Skip to content
Snippets Groups Projects

Rollout to production

Merged Simon Künzel requested to merge master into live_production
14 files
+ 85
118
Compare changes
  • Side-by-side
  • Inline
Files
14
@@ -8,6 +8,17 @@ API_SERVER_NAME = "dev"
# Must include the last /
FILE_PATH_PREFIX = "https://video.fsmpi.rwth-aachen.de/files/"
# Used for all cookies
# While the frontend and api are on different subdomains, that still counts as 'same-site'
COOKIES_SAMESITE = "strict"
COOKIES_SECURE = False
COOKIES_DOMAIN = ""
# These are flask's options for the session cookie
SESSION_COOKIE_SAMESITE = COOKIES_SAMESITE
SESSION_COOKIE_SECURE = COOKIES_SECURE
SESSION_COOKIE_DOMAIN = COOKIES_DOMAIN
# Used by flask to sign the cookies
SECRET_KEY = "something random"
Loading