From 99eacfc0a899130c952837b3d85d1065a55124f1 Mon Sep 17 00:00:00 2001 From: snnbotchway Date: Mon, 26 Jun 2023 00:21:01 +0000 Subject: [PATCH] Fix allowed host prod config --- app/storeroom/settings/prod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/storeroom/settings/prod.py b/app/storeroom/settings/prod.py index b983b02..fa558f3 100644 --- a/app/storeroom/settings/prod.py +++ b/app/storeroom/settings/prod.py @@ -6,4 +6,4 @@ # exception if SECRET_KEY not in os.environ SECRET_KEY = env("SECRET_KEY") -ALLOWED_HOSTS = env("ALLOWED_HOSTS") +ALLOWED_HOSTS = env.list("ALLOWED_HOSTS")