aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/hosts.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/hosts.py')
-rw-r--r--pysite/hosts.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/pysite/hosts.py b/pysite/hosts.py
deleted file mode 100644
index bb8f867d..00000000
--- a/pysite/hosts.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from django.conf import settings
-from django_hosts import host, patterns
-
-host_patterns = patterns(
- '',
- # > | Subdomain | URL Module | Host entry name |
- host(r'admin', 'pysite.apps.admin.urls', name="admin"),
- host(r'api', 'pysite.apps.api.urls', name='api'),
- # host(r"staff", "pysite.apps.staff", name="staff"),
- # host(r"wiki", "pysite.apps.wiki", name="wiki"),
- # host(r"ws", "pysite.apps. ws", name="ws"),
- host(r'.*', 'pysite.apps.home.urls', name=settings.DEFAULT_HOST)
-)