Spaces:
Runtime error
Runtime error
Merge pull request #162 from neon-mmd/readme-revision
Browse filesπ Revise the `docs` to remain in sync with the current changes
- Cargo.lock +1 -1
- Cargo.toml +1 -1
- docs/configuration.md +1 -0
- docs/installation.md +1 -0
Cargo.lock
CHANGED
@@ -3511,7 +3511,7 @@ dependencies = [
|
|
3511 |
|
3512 |
[[package]]
|
3513 |
name = "websurfx"
|
3514 |
-
version = "0.15.
|
3515 |
dependencies = [
|
3516 |
"actix-files",
|
3517 |
"actix-web",
|
|
|
3511 |
|
3512 |
[[package]]
|
3513 |
name = "websurfx"
|
3514 |
+
version = "0.15.1"
|
3515 |
dependencies = [
|
3516 |
"actix-files",
|
3517 |
"actix-web",
|
Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
[package]
|
2 |
name = "websurfx"
|
3 |
-
version = "0.15.
|
4 |
edition = "2021"
|
5 |
description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
|
6 |
repository = "https://github.com/neon-mmd/websurfx"
|
|
|
1 |
[package]
|
2 |
name = "websurfx"
|
3 |
+
version = "0.15.1"
|
4 |
edition = "2021"
|
5 |
description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
|
6 |
repository = "https://github.com/neon-mmd/websurfx"
|
docs/configuration.md
CHANGED
@@ -29,6 +29,7 @@ Some of the configuration options provided in the file are stated below. These a
|
|
29 |
- **port:** Port number on which server should be launched.
|
30 |
- **binding_ip_addr:** IP address on the which server should be launched.
|
31 |
- **production_use:** Whether to use production mode or not (in other words this option should be used if it is to be used to host it on the server to provide a service to a large number of users). If production_use is set to true. There will be a random delay before sending the request to the search engines, this is to prevent DDoSing the upstream search engines from a large number of simultaneous requests. This is newly added option and hence is only available in the **edge version**.
|
|
|
32 |
|
33 |
## Website
|
34 |
|
|
|
29 |
- **port:** Port number on which server should be launched.
|
30 |
- **binding_ip_addr:** IP address on the which server should be launched.
|
31 |
- **production_use:** Whether to use production mode or not (in other words this option should be used if it is to be used to host it on the server to provide a service to a large number of users). If production_use is set to true. There will be a random delay before sending the request to the search engines, this is to prevent DDoSing the upstream search engines from a large number of simultaneous requests. This is newly added option and hence is only available in the **edge version**.
|
32 |
+
- **request_timeout:** Timeout for the search requests sent to the upstream search engines to be fetched (value in seconds).
|
33 |
|
34 |
## Website
|
35 |
|
docs/installation.md
CHANGED
@@ -86,6 +86,7 @@ binding_ip_addr = "0.0.0.0" --ip address on the which server should be launched.
|
|
86 |
production_use = false -- whether to use production mode or not (in other words this option should be used if it is to be used to host it on the server to provide a service to a large number of users)
|
87 |
-- if production_use is set to true
|
88 |
-- There will be a random delay before sending the request to the search engines, this is to prevent DDoSing the upstream search engines from a large number of simultaneous requests.
|
|
|
89 |
|
90 |
-- ### Website ###
|
91 |
-- The different colorschemes provided are:
|
|
|
86 |
production_use = false -- whether to use production mode or not (in other words this option should be used if it is to be used to host it on the server to provide a service to a large number of users)
|
87 |
-- if production_use is set to true
|
88 |
-- There will be a random delay before sending the request to the search engines, this is to prevent DDoSing the upstream search engines from a large number of simultaneous requests.
|
89 |
+
request_timeout = 60 -- timeout for the search requests sent to the upstream search engines to be fetched (value in seconds).
|
90 |
|
91 |
-- ### Website ###
|
92 |
-- The different colorschemes provided are:
|