aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gentoo.org>2011-07-21 04:21:05 +0300
committerTheo Chatzimichos <tampakrap@gentoo.org>2011-07-21 04:21:05 +0300
commit2bbd5a2b5cf108ecdef1cd1721260163a6980b91 (patch)
tree71601fb27326376e969a09d83b33f95a232e5d7c /settings
parentImprove encryption functions: (diff)
downloadidentity.gentoo.org-2bbd5a2b5cf108ecdef1cd1721260163a6980b91.tar.gz
identity.gentoo.org-2bbd5a2b5cf108ecdef1cd1721260163a6980b91.tar.bz2
identity.gentoo.org-2bbd5a2b5cf108ecdef1cd1721260163a6980b91.zip
Add explicitly the SESSION_ENGINE var to save the session files in the
db
Diffstat (limited to 'settings')
-rw-r--r--settings/base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/base.py b/settings/base.py
index 2a34fdb..d2f789f 100644
--- a/settings/base.py
+++ b/settings/base.py
@@ -82,6 +82,8 @@ INSTALLED_APPS = (
'okupy.verification',
)
+SESSION_ENGINE = 'django.contrib.sessions.backends.db'
+
LOGIN_URL = '/login/'
LOGIN_REDIRECT_URL = '/'
LOGOUT_URL = '/logout/'