diff options
author | holysoles <holysoles97@gmail.com> | 2024-06-14 12:52:31 +0000 |
---|---|---|
committer | Bnyro <bnyro@tutanota.com> | 2024-06-14 14:58:02 +0200 |
commit | 7be468d2134f545531906491425f006e647dcece (patch) | |
tree | 64fac6c0680a8897c1ddc18a669a87fb8c971d8f /searx/settings.yml | |
parent | 63b7d558b677319819dd48653a89325c4460ab3f (diff) | |
download | searxng-7be468d2134f545531906491425f006e647dcece.tar.gz searxng-7be468d2134f545531906491425f006e647dcece.zip |
[feat] docker: add env vars for common public instance settings
Diffstat (limited to 'searx/settings.yml')
-rw-r--r-- | searx/settings.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index db749be77..d1e51031a 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -78,14 +78,18 @@ server: # 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 - public_instance: false # enable features designed only for public instances + # rate limit the number of request on the instance, block some bots. + # Is overwritten by ${SEARXNG_LIMITER} + limiter: false + # enable features designed only for public instances. + # Is overwritten by ${SEARXNG_PUBLIC_INSTANCE} + public_instance: false # If your instance owns a /etc/searxng/settings.yml file, then set the following # values there. secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET} - # Proxying image results through searx + # Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY} image_proxy: false # 1.0 and 1.1 are supported http_protocol_version: "1.0" @@ -106,6 +110,7 @@ redis: ui: # Custom static path - leave it blank if you didn't change static_path: "" + # Is overwritten by ${SEARXNG_STATIC_USE_HASH}. static_use_hash: false # Custom templates path - leave it blank if you didn't change templates_path: "" |