Define CSRF_TRUSTED_ORIGINS

This commit is contained in:
Bart Schuurmans 2024-04-02 12:38:53 +02:00
parent 051dab77bb
commit f38622fdc9

View file

@ -366,6 +366,7 @@ if (USE_HTTPS and PORT == 443) or (not USE_HTTPS and PORT == 80):
else:
NETLOC = f"{DOMAIN}:{PORT}"
BASE_URL = f"{PROTOCOL}://{NETLOC}"
CSRF_TRUSTED_ORIGINS = [BASE_URL]
USER_AGENT = f"BookWyrm (BookWyrm/{VERSION}; +{BASE_URL})"