Merge pull request #122 from dod-ccpo/flask-session

Use Flask-Sessions for session management
This commit is contained in:
richard-dds
2018-08-03 10:19:39 -04:00
committed by GitHub
2 changed files with 14 additions and 1 deletions

View File

@@ -16,3 +16,7 @@ PGPORT = 5432
PGUSER = postgres
PGPASSWORD = postgres
PGDATABASE = atat
SESSION_TYPE = "redis"
SESSION_COOKIE_DOMAIN= "atat.codes"
SESSION_COOKIE_SECURE = True
SESSION_USE_SIGNER = True