diff options
author | James Higginbotham <james@launchany.com> | 2021-03-19 15:06:25 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-19 15:06:25 -0600 |
commit | ce6eb81a71ad8b4479ed1f3e53db5ba3637a135a (patch) | |
tree | 80cab44627885af647befd58f73ca2c59c195610 | |
parent | 7e5553ddb6662c9f6eb46adf77cee84dbcedf2aa (diff) | |
download | searxng-ce6eb81a71ad8b4479ed1f3e53db5ba3637a135a.tar.gz searxng-ce6eb81a71ad8b4479ed1f3e53db5ba3637a135a.zip |
Update settings.yml to enable HTTP for yacy
Added a line to the yacy entry to enable HTTP if the local yacy instance isn't using HTTPS. Otherwise, an error will be thrown in the logs: "No connection adapters were found for 'http://localhost:8090/yacysearch.json...'". This is likely related to ticket #2641 that forces HTTPS by default.
-rw-r--r-- | searx/settings.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index a8d625b05..9032b02a7 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -1257,6 +1257,7 @@ engines: # engine : yacy # shortcut : ya # base_url : 'http://localhost:8090' +# enable_http: True # required if you aren't using HTTPS for your local yacy instance # number_of_results : 5 # timeout : 3.0 |