From bac98a02cbca8083c1dfcaf54c55be2bcfb0576b Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Tue, 27 Jan 2015 20:00:17 +0100 Subject: [PATCH] [mod] reduce cookie expirity time - fixes #204 --- searx/webapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/webapp.py b/searx/webapp.py index 65f70b0ea..04854a14b 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -91,7 +91,7 @@ for indice, theme in enumerate(themes): for (dirpath, dirnames, filenames) in os.walk(theme_img_path): global_favicons[indice].extend(filenames) -cookie_max_age = 60 * 60 * 24 * 365 * 23 # 23 years +cookie_max_age = 60 * 60 * 24 * 365 * 5 # 5 years @babel.localeselector