diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-02-17 18:58:59 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-02-17 18:58:59 +0100 |
commit | 59e4026762a809fe2a5b5a5a949d7d671f4d989b (patch) | |
tree | 660bc56cd0297670546a55b6fbdf35dfb0b32994 /.config.mk | |
parent | de58f02f6b502f05a86df50e3e6fa77d0b666ec9 (diff) | |
download | searxng-59e4026762a809fe2a5b5a5a949d7d671f4d989b.tar.gz searxng-59e4026762a809fe2a5b5a5a949d7d671f4d989b.zip |
searx.sh: install settings at /etc/searx/settings.yml
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to '.config.mk')
-rw-r--r-- | .config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config.mk b/.config.mk index 3349a7602..e03d29056 100644 --- a/.config.mk +++ b/.config.mk @@ -6,8 +6,8 @@ # Compare your settings here with file .config.sh used by the toolboxing in # utils. -export SEARX_URL=https://searx.me +export SEARX_URL:=$(or ${SEARX_URL},https://searx.me) -export GIT_URL=https://github.com/asciimoo/searx -export DOCS_URL=https://asciimoo.github.io/searx +export DOCS_URL:=$(or ${DOCS_URL},https://asciimoo.github.io/searx) +export GIT_URL:=$(or ${GIT_URL},https://github.com/asciimoo/searx) |