From 0246b3ef5ada4428612e79d3f8d525f2bb338484 Mon Sep 17 00:00:00 2001 From: Martin Quarda Date: Thu, 14 Mar 2024 18:45:20 +0100 Subject: [PATCH] add beta.alkator.cz to trusted origins --- alkator/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alkator/settings.py b/alkator/settings.py index 56ee0c1..86bde26 100644 --- a/alkator/settings.py +++ b/alkator/settings.py @@ -25,9 +25,9 @@ SECRET_KEY = 'django-insecure-#q!-odx05#6o&1dek)4shtqdw!)s5oonenb(tcmuwclu^dy4!# # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ['https://alkator.cz', 'localhost'] +ALLOWED_HOSTS = ['https://alkator.cz', 'https://beta.alkator.cz', 'localhost'] -CSRF_TRUSTED_ORIGINS = ['https://alkator.cz'] +CSRF_TRUSTED_ORIGINS = ['https://alkator.cz', 'https://beta.alkator.cz'] # Application definition