From 260c772d5a5530be4a29ca3fd9ad4c26e1fb90ba Mon Sep 17 00:00:00 2001 From: Jakub K Date: Thu, 21 Mar 2024 21:58:46 +0100 Subject: [PATCH] dodanie allowed_hosts --- izaac/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/izaac/settings.py b/izaac/settings.py index e36df79..06f316a 100644 --- a/izaac/settings.py +++ b/izaac/settings.py @@ -30,7 +30,7 @@ SECRET_KEY = "django-insecure-ztiqj957k(j*@ms=-^9j+=j7wd+cyo*+9g&hkfh1bji-@#&6(e # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ['izaac.izaac.pl', 'localhost', '127.0.0.1', 'izaac', 'tinyproxy-svc'] +ALLOWED_HOSTS = ['*'] CORS_ALLOW_ALL_ORIGINS = True