summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2015-12-21 10:53:53 +0000
committerMagnus Hagander2015-12-21 10:53:53 +0000
commit080f6bfb66d3690e630510c77a80cbb0071d0bfa (patch)
tree3f998ea800cd97651562162278832044810e3d79
parent6ae4848c4561f7f493ec524c1a18a48357234df8 (diff)
Force DEBUG=False in settings.py
This is normally overriden in the local settings to be off in prod and on in testing, but it's always good to be explicit.
-rw-r--r--pgmailmgr/settings.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pgmailmgr/settings.py b/pgmailmgr/settings.py
index d90d342..49e4421 100644
--- a/pgmailmgr/settings.py
+++ b/pgmailmgr/settings.py
@@ -157,6 +157,7 @@ AUTHENTICATION_BACKENDS = (
'pgmailmgr.auth.AuthBackend',
)
+DEBUG=False
SESSION_COOKIE_SECURE= True
SESSION_COOKIE_DOMAIN="webmail.postgresql.org"
from settings_local import *