diff options
author | Bnyro <bnyro@tutanota.com> | 2024-05-05 23:17:35 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2024-06-07 14:42:52 +0200 |
commit | aa59bfbf60d75508fc1f91220ed2598bf8cf97ec (patch) | |
tree | 8b975458c723a86b4b38d5882320fa8c0283dcdf /searx/settings.yml | |
parent | 3bec04079c027b952dee95dab194f29ea12e12a5 (diff) | |
download | searxng-aa59bfbf60d75508fc1f91220ed2598bf8cf97ec.tar.gz searxng-aa59bfbf60d75508fc1f91220ed2598bf8cf97ec.zip |
[feat] hostname replace plugin: support for external list file
Diffstat (limited to 'searx/settings.yml')
-rw-r--r-- | searx/settings.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 8a1c00ba8..db749be77 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -243,6 +243,16 @@ outgoing: # - '(.*\.)?google(\..*)?$' # high_priority: # - '(.*\.)?wikipedia.org$' +# +# Alternatively you can use external files for configuring the "Hostnames plugin": +# +# hostnames: +# replace: 'rewrite-hosts.yml' +# +# Content of 'rewrite-hosts.yml' (place the file in the same directory as 'settings.yml'): +# '(.*\.)?youtube\.com$': 'invidious.example.com' +# '(.*\.)?youtu\.be$': 'invidious.example.com' +# checker: # disable checker when in debug mode |