Set SESSION_COOKIE_SECURE=True for live.

This commit is contained in:
Rebecca Law
2016-01-28 15:01:44 +00:00
parent 32de812e6d
commit 5a17bba97e
2 changed files with 3 additions and 1 deletions

View File

@@ -56,6 +56,8 @@ class Test(Development):
class Live(Config):
DEBUG = False
HTTP_PROTOCOL = 'https'
SESSION_COOKIE_SECURE = True
configs = {
'live': Live,