summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2022-01-02 20:54:41 +0100
committerAlexandre Flament <alex@al-f.net>2022-01-02 21:18:29 +0100
commit76cbfbbdda526edcd106965f712c7a31511b6c6d (patch)
tree66b1cb66f83d9ac62f6d86c35fb59213a115ad96 /searx
parentc2e4b95e8d68ac151d51fbcd3f0875f2aaa3640f (diff)
downloadsearxng-76cbfbbdda526edcd106965f712c7a31511b6c6d.tar.gz
searxng-76cbfbbdda526edcd106965f712c7a31511b6c6d.zip
reference docs.searxng.org
Diffstat (limited to 'searx')
-rw-r--r--searx/engines/searx_engine.py2
-rw-r--r--searx/settings.yml2
-rw-r--r--searx/settings_defaults.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/searx/engines/searx_engine.py b/searx/engines/searx_engine.py
index 3e9035d6f..84a8e6449 100644
--- a/searx/engines/searx_engine.py
+++ b/searx/engines/searx_engine.py
@@ -10,7 +10,7 @@ from searx.engines import categories as searx_categories
about = {
"website": 'https://github.com/searxng/searxng',
"wikidata_id": 'Q17639196',
- "official_api_documentation": 'https://searxng.github.io/searxng/dev/search_api.html',
+ "official_api_documentation": 'https://docs.searxng.org/dev/search_api.html',
"use_official_api": True,
"require_api_key": False,
"results": 'JSON',
diff --git a/searx/settings.yml b/searx/settings.yml
index 3227a5a55..def43a5fc 100644
--- a/searx/settings.yml
+++ b/searx/settings.yml
@@ -5,7 +5,7 @@ general:
brand:
new_issue_url: https://github.com/searxng/searxng/issues/new
- docs_url: https://searxng.github.io/searxng
+ docs_url: https://docs.searxng.org/
public_instances: https://searx.space
wiki_url: https://github.com/searxng/searxng/wiki
issue_url: https://github.com/searxng/searxng/issues
diff --git a/searx/settings_defaults.py b/searx/settings_defaults.py
index 9c4711bfc..853d63161 100644
--- a/searx/settings_defaults.py
+++ b/searx/settings_defaults.py
@@ -146,7 +146,7 @@ SCHEMA = {
'brand': {
'issue_url': SettingsValue(str, 'https://github.com/searxng/searxng/issues'),
'new_issue_url': SettingsValue(str, 'https://github.com/searxng/searxng/issues/new'),
- 'docs_url': SettingsValue(str, 'https://searxng.github.io/searxng'),
+ 'docs_url': SettingsValue(str, 'https://docs.searxng.org'),
'public_instances': SettingsValue(str, 'https://searx.space'),
'wiki_url': SettingsValue(str, 'https://github.com/searxng/searxng/wiki'),
},