mirror of
https://github.com/searxng/searxng.git
synced 2024-11-07 22:00:12 +01:00
3e50e8de3e
Added function searx.get_setting(name, default=_unset): Returns the value to which ``name`` point. If there is no such name in the settings and the ``default`` is unset, a KeyError exception is raised. In all the python processes .. - make docs - make buildenv - make install (setup.py) the usage of the 'brand.*' name space is replaced by 'searx.get_setting' function. - brand.SEARX_URL --> get_setting('server.base_url') - brand.GIT_URL --> get_setting('brand.git_url') - brand.GIT_BRANCH' --> get_setting('server.base_url') - brand.ISSUE_URL --> get_setting('brand.issue_url') - brand.DOCS_URL --> get_setting('brand.docs_url') - brand.PUBLIC_INSTANCES --> get_setting('brand.public_instances') - brand.CONTACT_URL --> get_setting('general.contact_url', '') - brand.WIKI_URL --> get_setting('brand.wiki_url') - brand.TWITTER_URL --> get_setting('brand.twitter_url', '') Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
use_default_settings: true
|
|
|
|
general:
|
|
debug: false # Debug mode, only for development
|
|
instance_name: "searxng" # displayed name
|
|
contact_url: false # mailto:contact@example.com
|
|
|
|
search:
|
|
# Filter results. 0: None, 1: Moderate, 2: Strict
|
|
safe_search: 0
|
|
# Existing autocomplete backends: "dbpedia", "duckduckgo", "google",
|
|
# "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off
|
|
# by default.
|
|
autocomplete: ""
|
|
# Default search language - leave blank to detect from browser information or
|
|
# use codes from 'languages.py'
|
|
default_lang: ""
|
|
# remove format to deny access, use lower case.
|
|
formats: [html, csv, json, rss]
|
|
|
|
server:
|
|
port: 8888
|
|
# address to listen on
|
|
bind_address: "127.0.0.1"
|
|
secret_key: "ultrasecretkey" # change this!
|
|
# Set custom base_url. Possible values:
|
|
# false or "https://your.custom.host/location/"
|
|
# base_url: https://example.org/searx
|
|
# Proxying image results through searx
|
|
image_proxy: false
|
|
|
|
# result_proxy:
|
|
# url: http://127.0.0.1:3000/
|
|
# key: !!binary "your_morty_proxy_key"
|