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

@@ -47,4 +47,4 @@ class ItsdangerousSessionInterface(SessionInterface):
val = self.get_serializer(app).dumps(dict(session))
response.set_cookie(app.session_cookie_name, val,
expires=expires, httponly=True,
domain=domain)
domain=domain, secure=app.config.get('SESSION_COOKIE_SECURE'))

View File

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