From 1cc8bccf0af4b4e739deb13882ee124c411e3651 Mon Sep 17 00:00:00 2001 From: Alejandro Diaz Date: Mon, 11 Sep 2023 20:34:00 -0600 Subject: [PATCH] allow any host to access gui --- ui/homemanager/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/homemanager/settings.py b/ui/homemanager/settings.py index cc82f2d..df3756e 100644 --- a/ui/homemanager/settings.py +++ b/ui/homemanager/settings.py @@ -25,7 +25,7 @@ SECRET_KEY = 'okxix74jvuc0n6ia-i#!(1vf_a(dq)&-b)(an7nh2od@8z@tvw' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ['*'] # Application definition