Skip to content
Snippets Groups Projects
Commit 313fd081 authored by Chris Hines's avatar Chris Hines
Browse files

correct the cookie samesite setting

parent 87ac4130
No related branches found
No related tags found
3 merge requests!77Revert "disable agressive kill and restart",!76Test,!75Dev
Pipeline #32554 passed
......@@ -13,7 +13,7 @@ app.config['SESSION_REFRESH_EACH_REQUEST'] = True
app.config['SESSION_COOKIE_NAME'] = 'tessession'
app.config['SESSION_COOKIE_SECURE'] = True
app.config['SESSION_COOKIE_HTTPONLY'] = True
app.config['SESSION_COOKIE_SAMESITE'] = None
app.config['SESSION_COOKIE_SAMESITE'] = 'None'
app.config['APPLICATION_ROOT'] = '/'
if 'FLASK_ENV' in os.environ and os.environ['FLASK_ENV'] == 'development':
DEV=True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment