diff options
author | 2019-09-15 12:22:31 +0200 | |
---|---|---|
committer | 2019-09-15 12:22:31 +0200 | |
commit | 492496f989629a16ff446a5bb31534a9820fccb5 (patch) | |
tree | c62974a0e225ae8633e9ca22647fd282e86fd820 /pydis_site/settings.py | |
parent | Update `ALLOWED_HOSTS` for the new home. (diff) |
Changing the ALLOWED_HOSTS to allow for migration.
Adding django.pythondiscord.com and django.api.pythondiscord.com
to ALLOWED_HOSTS to allow us to run Djangoify and migrate
the infraction data.
Diffstat (limited to 'pydis_site/settings.py')
-rw-r--r-- | pydis_site/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py index cdc4ba25..702b2605 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -47,9 +47,9 @@ else: ALLOWED_HOSTS = env.list( 'ALLOWED_HOSTS', default=[ - 'pythondiscord.com', + 'django.pythondiscord.com', 'admin.pythondiscord.com', - 'api.pythondiscord.com', + 'api.django.pythondiscord.com', 'staff.pythondiscord.com', 'wiki.pythondiscord.com', ] |