From 1dd1188bdca2feafce083a549555dc8ab1100cbb Mon Sep 17 00:00:00 2001 From: ahosking Date: Sat, 25 Mar 2023 11:51:58 -0400 Subject: [PATCH] Chore: Add localhost to allowed hosts --- api/api/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/api/settings.py b/api/api/settings.py index 3580ca2..c33d0b0 100644 --- a/api/api/settings.py +++ b/api/api/settings.py @@ -29,7 +29,7 @@ SECRET_KEY = env("SECRET_KEY", default='django-insecure-7uajhmbt^@)mklk1ur=slkmn # SECURITY WARNING: don't run with debug turned on in production! DEBUG = env("DEBUG") -ALLOWED_HOSTS = ["localhost", "127.0.0.1", "192.168.1.187", "192.168.1.23", "192.168.1.125"] +ALLOWED_HOSTS = ["localhost", "127.0.0.1", "192.168.1.187", "192.168.1.23", "192.168.1.125", "0.0.0.0"] # Application definition