From 9ad916a94368acc2ad99d0f39a5658ddc89b4789 Mon Sep 17 00:00:00 2001 From: Celestino Rey Date: Tue, 14 Jan 2025 08:52:12 +0100 Subject: [PATCH] Sintaxis correcta de allowed_hosts --- gestion_reservas/gestion_reservas/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gestion_reservas/gestion_reservas/settings.py b/gestion_reservas/gestion_reservas/settings.py index 3e3ad29..d35ff01 100644 --- a/gestion_reservas/gestion_reservas/settings.py +++ b/gestion_reservas/gestion_reservas/settings.py @@ -26,7 +26,7 @@ SECRET_KEY = 'hey' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = os.environ["DEBUG"] == 'True' -ALLOWED_HOSTS = ".ocp-cluster.reymota.lab" +ALLOWED_HOSTS = [".ocp-cluster.reymota.lab"] # Application definition