From 76f07123193653a6c7f80c2ca9976fdfb029c9a3 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Fri, 20 Feb 2026 14:59:09 +0100 Subject: [PATCH] [mod] settings.yml - adjust default suspended_times from hours to minutes The default settings for the suspend times were previously 24 hours and 3 hours, respectively. Based on my experience, these defaults are too high; most engines handle suspend times of 3 minutes or 1 hour (captcha) without any problems. Signed-off-by: Markus Heiser --- searx/settings.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/searx/settings.yml b/searx/settings.yml index 7b9ff51e3..ab3eae1e5 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -61,11 +61,11 @@ search: 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 + SearxEngineAccessDenied: 180 # For error "CAPTCHA" - SearxEngineCaptcha: 86400 + SearxEngineCaptcha: 3600 # For error "Too many request" and "HTTP error 429" - SearxEngineTooManyRequests: 3600 + SearxEngineTooManyRequests: 180 # Cloudflare CAPTCHA cf_SearxEngineCaptcha: 1296000 cf_SearxEngineAccessDenied: 86400