aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2019-09-15 12:22:31 +0200
committerGravatar Leon Sandøy <[email protected]>2019-09-15 12:22:31 +0200
commit492496f989629a16ff446a5bb31534a9820fccb5 (patch)
treec62974a0e225ae8633e9ca22647fd282e86fd820
parentUpdate `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.
-rw-r--r--pydis_site/settings.py4
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',
]