diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2023-02-18 18:21:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 18:21:14 +0100 |
commit | 363203c579a648eea23b65761e5c80f7ac655b7d (patch) | |
tree | 73c13cd3b88ddbd144b18a383e23361dc754f23f /searx | |
parent | 54389a29feb3feea5a868f7b3b83c9718fb71014 (diff) | |
parent | 5820dc78ce3b60aaf686959e5328542ff9bd628e (diff) | |
download | searxng-363203c579a648eea23b65761e5c80f7ac655b7d.tar.gz searxng-363203c579a648eea23b65761e5c80f7ac655b7d.zip |
Merge pull request #2201 from return42/fix-2190
[doc] slight improvements to the doc of the settings (base_url)
Diffstat (limited to 'searx')
-rw-r--r-- | searx/settings.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index b4d7f03a5..14a87b769 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1,5 +1,5 @@ general: - # Debug mode, only for development + # Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG} debug: false # displayed name instance_name: "SearXNG" @@ -66,16 +66,19 @@ search: server: # If you change port, bind_address or base_url don't forget to rebuild - # instance's environment (make buildenv) + # instance's environment (make buildenv). Is overwritten by ${SEARXNG_PORT} + # and ${SEARXNG_BIND_ADDRESS} port: 8888 bind_address: "127.0.0.1" - base_url: false # Possible values: false or "https://example.org/location". + # public URL of the instance, to ensure correct inbound links. Is overwritten + # by ${SEARXNG_URL}. + base_url: false # "http://example.com/location" limiter: false # rate limit the number of request on the instance, block some bots # If your instance owns a /etc/searxng/settings.yml file, then set the following # values there. - secret_key: "ultrasecretkey" # change this! + secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET} # Proxying image results through searx image_proxy: false # 1.0 and 1.1 are supported @@ -91,6 +94,7 @@ server: Referrer-Policy: no-referrer redis: + # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}. # https://redis-py.readthedocs.io/en/stable/connections.html#redis.client.Redis.from_url url: false |