From 8264eb23f9bd2e41edd4cd418ce1ae7a1d070f67 Mon Sep 17 00:00:00 2001 From: Dominic Date: Fri, 14 Nov 2025 20:43:31 -0500 Subject: [PATCH] settings --- cwr/settings.py | 4 ++-- cwr/urls.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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'), ]