mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 12:50:11 +01:00
b6a55e223c
Not all settings from the 'brand:' section of the YAML files are needed in the shell scripts. This patch reduce the variables in ./utils/brand.env to what is needed. The following ('brand:' settings) can be removed from this file: - ISSUE_URL - DOCS_URL - PUBLIC_INSTANCES - WIKI_URL Tasks running outside of an *installed instance*, need the following settings from the YAML configuration: - GIT_URL <--> brand.git_url - GIT_BRANCH <--> brand.git_branch - SEARX_URL <--> server.base_url (aka PUBLIC_URL) - SEARX_PORT <--> server.port - SEARX_BIND_ADDRESS <--> server.bind_address Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
6 lines
162 B
Bash
6 lines
162 B
Bash
export GIT_URL='https://github.com/searxng/searxng'
|
|
export GIT_BRANCH='master'
|
|
export SEARX_URL=''
|
|
export SEARX_PORT='8888'
|
|
export SEARX_BIND_ADDRESS='127.0.0.1'
|