From c9bc6b9831ebeb611eec3f7ab69113f98f514121 Mon Sep 17 00:00:00 2001 From: Arne Schauf Date: Tue, 29 Apr 2025 14:09:59 +0200 Subject: [PATCH] Set ALLOWED_HOSTS in production settings Added 'feoneu.asw.io' to ALLOWED_HOSTS to comply with production environment requirements. This change ensures proper host validation for incoming requests. --- feo_homepage/settings/prod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feo_homepage/settings/prod.py b/feo_homepage/settings/prod.py index 2665846..fc05da2 100644 --- a/feo_homepage/settings/prod.py +++ b/feo_homepage/settings/prod.py @@ -5,7 +5,7 @@ DEBUG = False TEMPLATE_DEBUG = True EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' - +ALLOWED_HOSTS = ['feoneu.asw.io'] try: from .local import *