diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-11-13 15:44:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-13 15:44:18 +0100 |
| commit | 26a6cbadef821c71aed9e5a2c82cb65eecf0586b (patch) | |
| tree | 0f5ba369981b80761779f20f5b40b4f12fe71314 /searx/settings.yml | |
| parent | de7f8b757b4d63b19e935676467b2b5320e2b6b6 (diff) | |
| parent | a364e5485971601859c80b021f2d0baa45e4dd76 (diff) | |
Merge pull request #500 from return42/various
Various marginal fixes and improvements
Diffstat (limited to 'searx/settings.yml')
| -rw-r--r-- | searx/settings.yml | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index f53e3257b..475c94989 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -152,22 +152,32 @@ outgoing: # - plugin2 # - ... -# uncomment below section if you want to configure which plugin is enabled by -# default +# Comment or un-comment plugin to activate / deactivate by default. # # enabled_plugins: -# - "HTTPS rewrite" -# - "Hostname replace" # see configuration below - -# "Hostname replace" plugin configuration example: +# # these plugins are enabled if nothing is configured .. +# - 'Hash plugin' +# - 'Search on category select' +# - 'Self Informations' +# - 'Tracker URL remover' +# - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy +# # these plugins are disabled if nothing is configured .. +# - 'Hostname replace' # see hostname_replace configuration below +# - 'Infinite scroll' +# - 'Open Access DOI rewrite' +# - 'Vim-like hotkeys' + +# Configuration of the "Hostname replace" plugin: +# # hostname_replace: -# '(.*\.)?youtube\.com$': 'invidious.example.com' -# '(.*\.)?youtu\.be$': 'invidious.example.com' +# '(.*\.)?youtube\.com$': 'invidious.example.com' +# '(.*\.)?youtu\.be$': 'invidious.example.com' # '(.*\.)?youtube-noocookie\.com$': 'yotter.example.com' -# '(.*\.)?reddit\.com$': 'teddit.example.com' -# '(.*\.)?redd\.it$': 'teddit.example.com' -# '(www\.)?twitter\.com$': 'nitter.example.com' -# 'spam\.example\.com': false # remove results from spam.example.com +# '(.*\.)?reddit\.com$': 'teddit.example.com' +# '(.*\.)?redd\.it$': 'teddit.example.com' +# '(www\.)?twitter\.com$': 'nitter.example.com' +# # to remove matching host names from result list, set value to false +# 'spam\.example\.com': false checker: # disable checker when in debug mode |