This commit is contained in:
Ross
2021-09-01 19:26:53 +01:00
parent 0427aa836e
commit c3b0822cf7
3 changed files with 10 additions and 2 deletions
+4
View File
@@ -196,6 +196,10 @@ CORS_ORIGIN_ALLOW_ALL = True
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.PyMemcacheCache',
'LOCATION': '127.0.0.1:11211',
},
'filesystem': {
'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
'LOCATION': '/var/tmp/django_cache',
}