add cache timeout

This commit is contained in:
willipink 2021-05-16 19:58:48 +00:00
parent 542d83ef94
commit d54876f93a

View File

@ -138,6 +138,7 @@ CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
'LOCATION': '/var/tmp/django_cache',
'TIMEOUT': None,
}
}