-
-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #292 from n4ze3m/next
v1.10.0
- Loading branch information
Showing
23 changed files
with
650 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#https://docs.searxng.org/admin/searx.limiter.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
use_default_settings: true | ||
|
||
search: | ||
# Filter results. 0: None, 1: Moderate, 2: Strict | ||
safe_search: 0 | ||
# Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "yandex", "mwmbl", | ||
# "seznam", "startpage", "stract", "swisscows", "qwant", "wikipedia" - leave blank to turn it off | ||
# by default. | ||
autocomplete: 'google' | ||
# minimun characters to type before autocompleter starts | ||
autocomplete_min: 4 | ||
# Default search language - leave blank to detect from browser information or | ||
# use codes from 'languages.py' | ||
default_lang: 'auto' | ||
# max_page: 0 # if engine supports paging, 0 means unlimited numbers of pages | ||
# Available languages | ||
# languages: | ||
# - all | ||
# - en | ||
# - en-US | ||
# - de | ||
# - it-IT | ||
# - fr | ||
# - fr-BE | ||
# ban time in seconds after engine errors | ||
ban_time_on_fail: 5 | ||
# max ban time in seconds after engine errors | ||
max_ban_time_on_fail: 120 | ||
suspended_times: | ||
# Engine suspension time after error (in seconds; set to 0 to disable) | ||
# For error "Access denied" and "HTTP error [402, 403]" | ||
SearxEngineAccessDenied: 86400 | ||
# For error "CAPTCHA" | ||
SearxEngineCaptcha: 86400 | ||
# For error "Too many request" and "HTTP error 429" | ||
SearxEngineTooManyRequests: 3600 | ||
# Cloudflare CAPTCHA | ||
cf_SearxEngineCaptcha: 1296000 | ||
cf_SearxEngineAccessDenied: 86400 | ||
# ReCAPTCHA | ||
recaptcha_SearxEngineCaptcha: 604800 | ||
|
||
# remove format to deny access, use lower case. | ||
# formats: [html, csv, json, rss] | ||
formats: | ||
- html | ||
- json | ||
|
||
server: | ||
# Is overwritten by ${SEARXNG_PORT} and ${SEARXNG_BIND_ADDRESS} | ||
port: 8888 | ||
bind_address: '0.0.0.0' | ||
# public URL of the instance, to ensure correct inbound links. Is overwritten | ||
# by ${SEARXNG_URL}. | ||
base_url: false # "http://example.com/location" | ||
# rate limit the number of request on the instance, block some bots. | ||
# Is overwritten by ${SEARXNG_LIMITER} | ||
limiter: false | ||
# enable features designed only for public instances. | ||
# Is overwritten by ${SEARXNG_PUBLIC_INSTANCE} | ||
public_instance: false | ||
|
||
# If your instance owns a /etc/searxng/settings.yml file, then set the following | ||
# values there. | ||
|
||
secret_key: 'KDzXs0qvZdoZnzW7Eq4jhubjgTWayRM' # Is overwritten by ${SEARXNG_SECRET} | ||
# Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY} | ||
image_proxy: false | ||
# 1.0 and 1.1 are supported | ||
http_protocol_version: '1.0' | ||
# POST queries are more secure as they don't show up in history but may cause | ||
# problems when using Firefox containers | ||
method: 'POST' | ||
default_http_headers: | ||
X-Content-Type-Options: nosniff | ||
X-Download-Options: noopen | ||
X-Robots-Tag: noindex, nofollow | ||
Referrer-Policy: no-referrer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-- AlterTable | ||
ALTER TABLE "Bot" ADD COLUMN "internetSearchEnabled" BOOLEAN DEFAULT false; | ||
|
||
-- AlterTable | ||
ALTER TABLE "DialoqbaseSettings" ADD COLUMN "internetSearchEnabled" BOOLEAN DEFAULT false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- AlterTable | ||
ALTER TABLE "User" ADD COLUMN "isSuspended" BOOLEAN NOT NULL DEFAULT false; |
Oops, something went wrong.