diff options
| author | Alexandre Flament <alex@al-f.net> | 2023-01-28 10:24:14 +0000 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2023-01-28 10:24:14 +0000 |
| commit | 37addec69e4211aac6b2302c82cb5c5c7b1d5e04 (patch) | |
| tree | 52ce990fd7903fe9ae5407274057153f62ab9654 /searx/settings.yml | |
| parent | 6b71721ce80948d72ad656620a35507b73fc55d4 (diff) | |
search.suspended_time settings: bug fixes
* fix type in settings.yml: replace suspend_times by suspended_times
* always use delay defined in settings.yml:
* HTTP status 402 and 403: read the value from settings.yml instead of using the hardcoded value of 1 day.
* startpage engine: CAPTCHA suspend the engine for one day instead of one week
Diffstat (limited to 'searx/settings.yml')
| -rw-r--r-- | searx/settings.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 81025d653..216cb3c82 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -45,7 +45,7 @@ search: ban_time_on_fail: 5 # max ban time in seconds after engine errors max_ban_time_on_fail: 120 - suspend_times: + 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 |