From ff527e268170852563830bf5b29a65515a98d2bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Sat, 13 Mar 2021 20:27:47 +0100 Subject: Add Solr engine --- searx/settings.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 85ba4b2fe..da84e82b5 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -943,6 +943,17 @@ engines: # api_client_id : ******* # api_client_secret : ******* +# - name : solr +# engine : solr +# shortcut : slr +# base_url : http://localhost:8983 +# collection : collection_name +# sort : '' # sorting: asc or desc +# field_list : '' # comma separated list of field names to display on the UI +# default_fields : '' # default field to query +# query_fields : '' # query fields +# enable_http : True + - name : startpage engine : startpage shortcut : sp -- cgit v1.2.3 From 3703ebb22a6ddd9cc2279afd377fa275f35d417c Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sun, 14 Mar 2021 11:49:18 +0100 Subject: [drop] Acgsou engine - www.acgsou.com no longer exists - https://www.acgsou.com/ acgsou.com is redirected to 36dm.club - @rinpatch do not plan on maintaining the engine [1] [1] https://github.com/searx/searx/pull/1283#issuecomment-798783585 Signed-off-by: Markus Heiser --- searx/settings.yml | 6 ------ 1 file changed, 6 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 85ba4b2fe..4c5b3c0e5 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -737,12 +737,6 @@ engines: shortcut : nt disabled : True - - name : acgsou - engine : acgsou - shortcut : acg - disabled : True - timeout: 5.0 - - name : openairedatasets engine : json_engine paging : True -- cgit v1.2.3 From f4a0a4d756626ed2b97f233e7a9ee6ac4d1deb8a Mon Sep 17 00:00:00 2001 From: Marc Abonce Seguin Date: Sun, 14 Mar 2021 20:16:16 -0700 Subject: 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 --- searx/settings.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'searx/settings.yml') 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 -- cgit v1.2.3