diff options
author | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2021-03-14 20:16:16 -0700 |
---|---|---|
committer | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2021-03-14 20:23:07 -0700 |
commit | f4a0a4d756626ed2b97f233e7a9ee6ac4d1deb8a (patch) | |
tree | d56730481d55dd49b38544c960614e774db2db75 /searx | |
parent | 9292571304376c2c463fb26ee0db89298bb00e6c (diff) | |
download | searxng-f4a0a4d756626ed2b97f233e7a9ee6ac4d1deb8a.tar.gz searxng-f4a0a4d756626ed2b97f233e7a9ee6ac4d1deb8a.zip |
fix HTTP error in onion engines
regression from https://github.com/searx/searx/pull/2641
most onion websites only serve HTTP, so it must be enabled
Diffstat (limited to 'searx')
-rw-r--r-- | searx/settings.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 85ba4b2fe..8f6a875b4 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -82,6 +82,8 @@ outgoing: # communication with search engines # https: # - http://proxy1:8080 # - http://proxy2:8080 +# using_tor_proxy : True +# extra_proxy_timeout : 10.0 # Extra seconds to add in order to account for the time taken by the proxy # uncomment below section only if you have more than one network interface # which can be the source of outgoing search requests # source_ips: @@ -159,6 +161,7 @@ engines: - name : ahmia engine : ahmia categories : onions + enable_http : True shortcut : ah - name : arch linux wiki @@ -730,6 +733,8 @@ engines: # Requires Tor - name : not evil engine : not_evil + categories : onions + enable_http : True shortcut : ne - name : nyaa @@ -979,6 +984,7 @@ engines: title_xpath : ./td[2]/b content_xpath : ./td[2]/small categories : onions + enable_http : True shortcut : tch # maybe in a fun category |