diff options
| author | 2021-10-17 13:41:51 +0100 | |
|---|---|---|
| committer | 2021-10-17 13:41:51 +0100 | |
| commit | f5ab651b1f8e2dc9f498198087750d4c38010320 (patch) | |
| tree | d101820efaa59f066e37d3aa4d6908663498a1ba /pydis_site/hosts.py | |
| parent | Direct appeals to the appeals server (diff) | |
| parent | Merge pull request #613 from python-discord/mbaruh-patch-1 (diff) | |
Merge branch 'main' into new-ban-appeals-process
Diffstat (limited to 'pydis_site/hosts.py')
| -rw-r--r-- | pydis_site/hosts.py | 13 | 
1 files changed, 0 insertions, 13 deletions
| diff --git a/pydis_site/hosts.py b/pydis_site/hosts.py deleted file mode 100644 index 5a837a8b..00000000 --- a/pydis_site/hosts.py +++ /dev/null @@ -1,13 +0,0 @@ -from django.conf import settings -from django_hosts import host, patterns - -host_patterns = patterns( -    '', -    host(r'admin', 'pydis_site.apps.admin.urls', name="admin"), -    # External API ingress (over the net) -    host(r'api', 'pydis_site.apps.api.urls', name='api'), -    # Internal API ingress (cluster local) -    host(r'pydis-api', 'pydis_site.apps.api.urls', name='internal_api'), -    host(r'staff', 'pydis_site.apps.staff.urls', name='staff'), -    host(r'.*', 'pydis_site.apps.home.urls', name=settings.DEFAULT_HOST) -) | 
