Skip to content

Commit

Permalink
Changed allowed hosts to wildcard in staging (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker authored Jun 11, 2022
1 parent 2bb7eee commit cb2cb17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings/staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"FERNET_SECRET_KEY", default=["76d7e8e551f23cc5b648ec88d01b6d2b26d72b148e2b2a3b02bf77037f236a8b"]
)
# https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts
ALLOWED_HOSTS = json.loads(env("DJANGO_ALLOWED_HOSTS", default='["*"]'))
ALLOWED_HOSTS = ["*"]

# DATABASES
# ------------------------------------------------------------------------------
Expand Down

0 comments on commit cb2cb17

Please sign in to comment.