diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-12-21 00:37:45 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-01-11 22:12:38 +0100 |
commit | 9485179064b4eb28f2813eba3c295edca3b0db7f (patch) | |
tree | e9f5f003e9887aa130a3f19d82a1d9ace898504b /searx | |
parent | dbfd5567aaa06a5f9792bb0839af74877ed5258c (diff) | |
download | searxng-9485179064b4eb28f2813eba3c295edca3b0db7f.tar.gz searxng-9485179064b4eb28f2813eba3c295edca3b0db7f.zip |
[mod] move brand options from Makefile to settings.yml
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx')
-rw-r--r-- | searx/brand.py | 4 | ||||
-rw-r--r-- | searx/settings.yml | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/searx/brand.py b/searx/brand.py index 7fcab6fad..cede5a270 100644 --- a/searx/brand.py +++ b/searx/brand.py @@ -1,7 +1,9 @@ +SEARX_URL = '' GIT_URL = 'https://github.com/searx/searx' GIT_BRANCH = 'master' ISSUE_URL = 'https://github.com/searx/searx/issues' -SEARX_URL = 'https://searx.me' DOCS_URL = 'https://searx.github.io/searx' PUBLIC_INSTANCES = 'https://searx.space' CONTACT_URL = '' +WIKI_URL = 'https://github.com/searx/searx/wiki' +TWITTER_URL = 'https://twitter.com/Searx_engine' diff --git a/searx/settings.yml b/searx/settings.yml index 0a569e59c..aff80fe55 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1,6 +1,14 @@ general: debug : False # Debug mode, only for development instance_name : "searx" # displayed name + git_url: https://github.com/searx/searx + git_branch: master + issue_url: https://github.com/searx/searx/issues + docs_url: https://searx.github.io/searx + public_instances: https://searx.space + contact_url: False # mailto:contact@example.com + wiki_url: https://github.com/searx/searx/wiki + twitter_url: https://twitter.com/Searx_engine search: safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict |