mirror of
https://github.com/searxng/searxng.git
synced 2024-12-29 20:50:28 +00:00
[mod] reduce cookie expirity time - fixes #204
This commit is contained in:
parent
dafb49c804
commit
bac98a02cb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue