diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2021-07-20 13:50:01 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-07-24 16:28:15 +0200 |
| commit | e946c3462c2b44fb154d0b6595f4f42605a326e5 (patch) | |
| tree | b0a233639f50225e462ccec46bab8f11984b0b5e | |
| parent | 7196a9b5dd2525003bb7d69e2b58ee982df0c30b (diff) | |
[brand] !!DO NOT MERGE!! this patch uses branch fix-searx.sh @return42
Do not merge this patch in master branch of SearXNG! This branch exists only
for testing the feature branch fix-searx.sh @return42.
This patch changes the buildenv to::
GIT_URL='https://github.com/return42/searxng'
GIT_BRANCH='fix-searx.sh'
SEARX_PORT='7777'
SEARX_BIND_ADDRESS='127.0.0.12'
To test installation procedure, clone feature branch (fix-searx.sh)::
$ cd ~/Downloads
$ git clone --branch fix-searx.sh https://github.com/return42/searxng searxng
$ cd searxng
$ ./utils/searx.sh install all
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
| -rw-r--r-- | searx/settings.yml | 8 | ||||
| -rw-r--r-- | utils/brand.env | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index a951b862b..5307631dd 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -12,8 +12,8 @@ brand: # If you change a value below don't forget to rebuild instance's enviroment # (make buildenv) - git_url: https://github.com/searxng/searxng - git_branch: master + git_url: https://github.com/return42/searxng + git_branch: fix-searx.sh search: # Filter results. 0: None, 1: Moderate, 2: Strict @@ -35,8 +35,8 @@ search: server: # If you change port, bind_address or base_url don't forget to rebuild # instance's enviroment (make buildenv) - port: 8888 - bind_address: "127.0.0.1" + port: 7777 + bind_address: "127.0.0.12" base_url: false # Possible values: false or "https://example.org/location". # If your instance owns a /etc/searx/settings.yml file, then set the following diff --git a/utils/brand.env b/utils/brand.env index 2075a2bf4..c09ea9d2f 100644 --- a/utils/brand.env +++ b/utils/brand.env @@ -1,5 +1,5 @@ -export GIT_URL='https://github.com/searxng/searxng' -export GIT_BRANCH='master' +export GIT_URL='https://github.com/return42/searxng' +export GIT_BRANCH='fix-searx.sh' export SEARX_URL='' -export SEARX_PORT='8888' -export SEARX_BIND_ADDRESS='127.0.0.1' +export SEARX_PORT='7777' +export SEARX_BIND_ADDRESS='127.0.0.12' |