mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
custom: Add settings for logo and favicon
This commit is contained in:
parent
e26bce33d4
commit
ddc0fbf5c9
2 changed files with 4 additions and 0 deletions
|
@ -14,6 +14,8 @@ general:
|
|||
enable_metrics: true
|
||||
|
||||
brand:
|
||||
favicon: static/favicon.ico
|
||||
#logo: searx/static/themes/simple/img/searxng.png
|
||||
new_issue_url: https://github.com/searxng/searxng/issues/new
|
||||
docs_url: https://docs.searxng.org/
|
||||
public_instances: https://searx.space
|
||||
|
|
|
@ -146,6 +146,8 @@ SCHEMA = {
|
|||
'enable_metrics': SettingsValue(bool, True),
|
||||
},
|
||||
'brand': {
|
||||
'favicon': SettingsValue(str, "static/themes/simple/img/favicon.png"),
|
||||
'logo': SettingsValue(str, "static/themes/simple/img/searxg.png"),
|
||||
'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://docs.searxng.org'),
|
||||
|
|
Loading…
Add table
Reference in a new issue