From ae2e6efbb88699fc65778684726d4f41cf29ae17 Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Fri, 5 Aug 2022 15:58:41 -0600 Subject: [PATCH] Update allowed hosts --- src/indici/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/indici/settings.py b/src/indici/settings.py index 6f82834..dcc8da3 100644 --- a/src/indici/settings.py +++ b/src/indici/settings.py @@ -10,7 +10,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent # Add Your Required Allow Host if not DEBUG: ALLOWED_HOSTS = [ - 'forum.windmillapps.org', + 'indici.windmillapps.org', ] else: ALLOWED_HOSTS = ['192.168.68.106', '127.0.0.1', 'localhost']