This commit is contained in:
Dominic 2025-11-14 20:43:31 -05:00
parent bfcd46a5e2
commit 8264eb23f9
2 changed files with 3 additions and 3 deletions

View file

@ -18,9 +18,9 @@ SECRET_KEY = 'django-insecure-l2amdti&+4frup-f-%084399hpxc19#*!j+-nyxh)!lj1^d1@g
DEBUG = True DEBUG = True
DEV = 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 # Application definition
INSTALLED_APPS = [ INSTALLED_APPS = [

View file

@ -17,5 +17,5 @@ urlpatterns = [
path("", forum_threads, name='index'), path("", forum_threads, name='index'),
path("forum/threads/", forum_threads, name='forum_threads'), path("forum/threads/", forum_threads, name='forum_threads'),
path("forum/thread/<thread_id>", thread, name='thread'), path("forum/thread/<thread_id>", thread, name='thread'),
path("test/", test_email, name='test'), # path("test/", test_email, name='test'),
] ]