Corrected issue with SERVER_EXTERNAL_SSL setting not being extracted from the app's environment. (#1529)

This commit is contained in:
Matt Scott
2023-04-13 13:47:42 -04:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ SECRET_KEY = 'e951e5a1f4b94151b360f47edf596dd2'
BIND_ADDRESS = '0.0.0.0'
PORT = 9191
HSTS_ENABLED = False
SERVER_EXTERNAL_SSL = True
SERVER_EXTERNAL_SSL = os.getenv('SERVER_EXTERNAL_SSL', True)
SESSION_TYPE = 'sqlalchemy'
SESSION_COOKIE_SAMESITE = 'Lax'