diff --git a/config/settings/production.py b/config/settings/production.py index 76e654e80..8d9423b06 100644 --- a/config/settings/production.py +++ b/config/settings/production.py @@ -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(",")