Skip to content

Commit

Permalink
Hard code ALLOWED_HOSTS (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Sep 17, 2024
1 parent 61fccef commit 2bd590c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@
# CLIENT_VERIFY_CERTIFICATES = True

SECRET_KEY = os.getenv("SECRET_KEY", "")
# Need to get the IP of the load balancer or reverse proxy

# TODO: Remove later
ALLOWED_HOSTS = os.environ.get("ALLOWED_HOSTS", "*").split(",")

0 comments on commit 2bd590c

Please sign in to comment.