From aca78e69ba67e1075f123d075f5c70dcefc9ff44 Mon Sep 17 00:00:00 2001 From: Jakub K Date: Thu, 1 Feb 2024 23:27:10 +0100 Subject: [PATCH] add allowed hosts --- izaac/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/izaac/settings.py b/izaac/settings.py index be2ae79..e36df79 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'] +ALLOWED_HOSTS = ['izaac.izaac.pl', 'localhost', '127.0.0.1', 'izaac', 'tinyproxy-svc'] CORS_ALLOW_ALL_ORIGINS = True