diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-13 06:09:03 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-13 06:09:03 +0100 |
commit | afbf2e4662be5fab38eb343b624130abbcb2cda3 (patch) | |
tree | 6a7aa409279e54e572c506f62d3cec68275eaa48 | |
parent | 7550f31f604fa45f9030a32b9b8fbc2d0739bed7 (diff) |
Amended ALLOWED_HOSTS
-rw-r--r-- | config/settings/production.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/settings/production.py b/config/settings/production.py index 0034fd8..0bb8e21 100644 --- a/config/settings/production.py +++ b/config/settings/production.py @@ -10,7 +10,7 @@ from .base import env # https://docs.djangoproject.com/en/dev/ref/settings/#secret-key SECRET_KEY = env("DJANGO_SECRET_KEY") # https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts -ALLOWED_HOSTS = env.list("DJANGO_ALLOWED_HOSTS", default=["resources.joannalemon.com"]) +ALLOWED_HOSTS = env.list("DJANGO_ALLOWED_HOSTS", default=["alphabetlearning.online"]) # DATABASES # ------------------------------------------------------------------------------ |