From d278664f05fe68132e0c46cef8a674046e4e96e8 Mon Sep 17 00:00:00 2001 From: rafa Date: Mon, 27 Oct 2025 16:43:51 +0000 Subject: [PATCH] Add * to allowed hosts --- backend/backend/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/backend/settings.py b/backend/backend/settings.py index bdb7643..8ae0195 100644 --- a/backend/backend/settings.py +++ b/backend/backend/settings.py @@ -25,7 +25,7 @@ SECRET_KEY = 'django-insecure-tnwju9!q=iyct2(m1r(e&f9x&z4syi2hqd2e)x78((9c(fj=l@ # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ['*'] # Application definition