diff --git a/cwr/settings.py b/cwr/settings.py index 766cd83..3913f14 100644 --- a/cwr/settings.py +++ b/cwr/settings.py @@ -18,9 +18,9 @@ SECRET_KEY = 'django-insecure-l2amdti&+4frup-f-%084399hpxc19#*!j+-nyxh)!lj1^d1@g DEBUG = True DEV = True -ALLOWED_HOSTS = ['127.0.0.1', '0.0.0.0', 'cwr.domdit.com', 'domdit.com', '192.168.1.65'] +ALLOWED_HOSTS = ['127.0.0.1', '0.0.0.0', 'cwr.domdit.com', 'domdit.com', '192.168.1.65', 'members.christian-webring.org', 'christian-webring.og'] -CSRF_TRUSTED_ORIGINS = ['https://cwr.domdit.com'] +CSRF_TRUSTED_ORIGINS = ['https://members.christian-webring.org'] # Application definition INSTALLED_APPS = [ diff --git a/cwr/urls.py b/cwr/urls.py index e812174..dfc4f26 100644 --- a/cwr/urls.py +++ b/cwr/urls.py @@ -17,5 +17,5 @@ urlpatterns = [ path("", forum_threads, name='index'), path("forum/threads/", forum_threads, name='forum_threads'), path("forum/thread/", thread, name='thread'), - path("test/", test_email, name='test'), + # path("test/", test_email, name='test'), ]