fix: trusted origins settings.py

This commit is contained in:
Dariusz Niemczyk 2024-01-14 21:46:54 +01:00
parent 6c81441f00
commit 81417f58be
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ ALLOWED_HOSTS = env(
).split(",") ).split(",")
LOGIN_REDIRECT_URL = "/admin/" LOGIN_REDIRECT_URL = "/admin/"
CSRF_TRUSTED_ORIGINS = env("HOST", "https://inventory.hackerspace.pl,").split(",") CSRF_TRUSTED_ORIGINS = env("HOST", "https://inventory.hackerspace.pl").split(",")
# Application definition # Application definition