0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2025-01-06 19:48:22 -05:00

Merge branch 'rolling' into FEAT/427_export-import-settings-to-and-from-a-json-file-support-for-the-ui

This commit is contained in:
neon_arch 2024-12-24 22:24:08 +03:00
commit 8d15709648
6 changed files with 688 additions and 419 deletions

View File

@ -1,13 +1,14 @@
pull_request_rules: queue_rules:
- name: Automatic merge on approval - name: default
conditions: queue_conditions:
- "#approved-reviews-by>=2" - "#approved-reviews-by>=2"
- check-success=build (stable) - check-success=build (stable)
- check-success=CodeFactor - check-success=CodeFactor
- check-success=Rust project - check-success=Rust project
actions: merge_conditions: []
queue: merge_method: squash
method: squash
pull_request_rules:
- name: automatic update of pull requests where more 5 commits behind - name: automatic update of pull requests where more 5 commits behind
conditions: conditions:
- "#commits-behind>5" - "#commits-behind>5"
@ -17,4 +18,8 @@ pull_request_rules:
conditions: conditions:
- merged - merged
actions: actions:
delete_head_branch: {} delete_head_branch: {}
- name: Automatic merge on approval
conditions: []
actions:
queue:

1070
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -26,13 +26,13 @@ tokio = { version = "1.41.0", features = [
"fs", "fs",
"io-util", "io-util",
], default-features = false } ], default-features = false }
serde = { version = "1.0.209", default-features = false, features = ["derive"] } serde = { version = "1.0.215", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.122", default-features = false } serde_json = { version = "1.0.122", default-features = false }
bincode = {version="1.3.3", default-features=false} bincode = {version="1.3.3", default-features=false}
maud = { version = "0.26.0", default-features = false, features = [ maud = { version = "0.26.0", default-features = false, features = [
"actix-web", "actix-web",
] } ] }
scraper = { version = "0.20.0", default-features = false } scraper = { version = "0.21.0", default-features = false }
actix-web = { version = "4.9.0", features = [ actix-web = { version = "4.9.0", features = [
"cookies", "cookies",
"macros", "macros",
@ -52,7 +52,7 @@ redis = { version = "0.27.5", features = [
"connection-manager", "connection-manager",
"tcp_nodelay" "tcp_nodelay"
], default-features = false, optional = true } ], default-features = false, optional = true }
blake3 = { version = "1.5.4", default-features = false } blake3 = { version = "1.5.5", default-features = false }
error-stack = { version = "0.5.0", default-features = false, features = [ error-stack = { version = "0.5.0", default-features = false, features = [
"std", "std",
] } ] }
@ -79,7 +79,7 @@ base64 = { version = "0.21.5", default-features = false, features = [
"std", "std",
], optional = true } ], optional = true }
cfg-if = { version = "1.0.0", default-features = false, optional = true } cfg-if = { version = "1.0.0", default-features = false, optional = true }
keyword_extraction = { version = "1.4.3", default-features = false, features = [ keyword_extraction = { version = "1.5.0", default-features = false, features = [
"tf_idf", "tf_idf",
"rayon", "rayon",
] } ] }
@ -96,7 +96,7 @@ actix-multipart = { version = "0.7.2", default-features = false, features = [
[dev-dependencies] [dev-dependencies]
rusty-hook = { version = "^0.11.2", default-features = false } rusty-hook = { version = "^0.11.2", default-features = false }
criterion = { version = "0.5.1", default-features = false } criterion = { version = "0.5.1", default-features = false }
tempfile = { version = "3.13.0", default-features = false } tempfile = { version = "3.14.0", default-features = false }
[build-dependencies] [build-dependencies]
lightningcss = { version = "1.0.0-alpha.57", default-features = false, features = [ lightningcss = { version = "1.0.0-alpha.57", default-features = false, features = [

View File

@ -53,6 +53,8 @@ pub struct Config {
pub proxy: Option<Proxy>, pub proxy: Option<Proxy>,
/// It stores the number of https connections to keep in the pool. /// It stores the number of https connections to keep in the pool.
pub number_of_https_connections: u8, pub number_of_https_connections: u8,
/// It stores the operating system's TLS certificates for https requests.
pub operating_system_tls_certificates: bool,
} }
impl Config { impl Config {
@ -132,6 +134,8 @@ impl Config {
}); });
Ok(Config { Ok(Config {
operating_system_tls_certificates: globals
.get::<_, bool>("operating_system_tls_certificates")?,
port: globals.get::<_, u16>("port")?, port: globals.get::<_, u16>("port")?,
binding_ip: globals.get::<_, String>("binding_ip")?, binding_ip: globals.get::<_, String>("binding_ip")?,
style: Style::new( style: Style::new(

View File

@ -83,6 +83,8 @@ pub async fn aggregate(
.tcp_keepalive(Duration::from_secs(config.tcp_connection_keep_alive as u64)) .tcp_keepalive(Duration::from_secs(config.tcp_connection_keep_alive as u64))
.pool_max_idle_per_host(config.number_of_https_connections as usize) .pool_max_idle_per_host(config.number_of_https_connections as usize)
.connect_timeout(Duration::from_secs(config.request_timeout as u64)) // Add timeout to request to avoid DDOSing the server .connect_timeout(Duration::from_secs(config.request_timeout as u64)) // Add timeout to request to avoid DDOSing the server
.use_rustls_tls()
.tls_built_in_root_certs(config.operating_system_tls_certificates)
.https_only(true) .https_only(true)
.gzip(true) .gzip(true)
.brotli(true) .brotli(true)

View File

@ -19,6 +19,8 @@ rate_limiter = {
-- Set whether the server will use an adaptive/dynamic HTTPS window size, see https://httpwg.org/specs/rfc9113.html#fc-principles -- Set whether the server will use an adaptive/dynamic HTTPS window size, see https://httpwg.org/specs/rfc9113.html#fc-principles
https_adaptive_window_size = false https_adaptive_window_size = false
operating_system_tls_certificates = true -- Set whether the server will use operating system's tls certificates alongside rustls certificates while fetching search results from the upstream engines.
number_of_https_connections = 10 -- the number of https connections that should be available in the connection pool. number_of_https_connections = 10 -- the number of https connections that should be available in the connection pool.
-- Set keep-alive timer in seconds; keeps clients connected to the HTTP server, different from the connection to upstream search engines -- Set keep-alive timer in seconds; keeps clients connected to the HTTP server, different from the connection to upstream search engines
client_connection_keep_alive = 120 client_connection_keep_alive = 120