Skip to content

Commit

Permalink
Fix fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
n2o committed Aug 22, 2024
1 parent ff67be1 commit be53c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mathefragen/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

SITE_NAME = DOMAIN

ALLOWED_HOSTS = env.list('ALLOWED_HOSTS', default='localhost,127.0.0.1')
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS', default=['localhost', '127.0.0.1'])
CSRF_TRUSTED_ORIGINS = env.list('CSRF_TRUSTED_ORIGINS', default=["http://localhost", "http://127.0.0.1"])
SECURE_REFERRER_POLICY = "origin"

Expand Down

0 comments on commit be53c37

Please sign in to comment.