diff options
author | Alexandre Flament <alex@al-f.net> | 2021-10-02 16:58:09 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-10-02 16:58:09 +0200 |
commit | 9e266ecad3cc20faf2c12cdab7862c29cf8df2ec (patch) | |
tree | 909c3128b5971617392c7052c836e67577cd02c4 /utils | |
parent | 6443ed75622e8b99ea69b60a573275617d5f87a5 (diff) | |
download | searxng-9e266ecad3cc20faf2c12cdab7862c29cf8df2ec.tar.gz searxng-9e266ecad3cc20faf2c12cdab7862c29cf8df2ec.zip |
SearXNG: SEARX_BIND_ADDRESS
Diffstat (limited to 'utils')
-rw-r--r-- | utils/brand.env | 2 | ||||
-rw-r--r-- | utils/build_env.py | 4 | ||||
-rwxr-xr-x | utils/filtron.sh | 2 | ||||
-rwxr-xr-x | utils/searx.sh | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/utils/brand.env b/utils/brand.env index d63e686d4..5cc2af35b 100644 --- a/utils/brand.env +++ b/utils/brand.env @@ -1,5 +1,5 @@ export SEARX_URL='' export SEARXNG_PORT='8888' -export SEARX_BIND_ADDRESS='127.0.0.1' +export SEARXNG_BIND_ADDRESS='127.0.0.1' export GIT_URL='https://github.com/searxng/searxng' export GIT_BRANCH='master' diff --git a/utils/build_env.py b/utils/build_env.py index 750f29f1c..3ba4e4aaf 100644 --- a/utils/build_env.py +++ b/utils/build_env.py @@ -30,14 +30,14 @@ name_val = [ ('SEARX_URL' , 'server.base_url'), ('SEARXNG_PORT' , 'server.port'), - ('SEARX_BIND_ADDRESS' , 'server.bind_address'), + ('SEARXNG_BIND_ADDRESS' , 'server.bind_address'), ] brand_env = 'utils' + sep + 'brand.env' # Some defaults in the settings.yml are taken from the environment, -# e.g. SEARX_BIND_ADDRESS (:py:obj:`searx.settings_defaults.SHEMA`). When the +# e.g. SEARXNG_BIND_ADDRESS (:py:obj:`searx.settings_defaults.SHEMA`). When the # 'brand.env' file is created these enviroment variables should be unset first:: _unset = object() diff --git a/utils/filtron.sh b/utils/filtron.sh index bb2a8d742..a608f7769 100755 --- a/utils/filtron.sh +++ b/utils/filtron.sh @@ -28,7 +28,7 @@ FILTRON_LISTEN="${FILTRON_LISTEN:-127.0.0.1:4004}" # server.bind_address. The default of FILTRON_TARGET is taken from the YAML # configuration, do not change this value without reinstalling the entire # SearXNG suite including filtron & morty. -FILTRON_TARGET="${SEARX_BIND_ADDRESS}:${SEARXNG_PORT}" +FILTRON_TARGET="${SEARXNG_BIND_ADDRESS}:${SEARXNG_PORT}" SERVICE_NAME="filtron" SERVICE_USER="${SERVICE_USER:-${SERVICE_NAME}}" diff --git a/utils/searx.sh b/utils/searx.sh index d7838c5fc..ed33e18c8 100755 --- a/utils/searx.sh +++ b/utils/searx.sh @@ -12,7 +12,7 @@ source "${REPO_ROOT}/utils/lib_install.sh" # config # ---------------------------------------------------------------------------- -SEARX_INTERNAL_HTTP="${SEARX_BIND_ADDRESS}:${SEARXNG_PORT}" +SEARX_INTERNAL_HTTP="${SEARXNG_BIND_ADDRESS}:${SEARXNG_PORT}" SEARX_URL_PATH="${SEARX_URL_PATH:-$(echo "${PUBLIC_URL}" \ | sed -e 's,^.*://[^/]*\(/.*\),\1,g')}" |