Fixes: 1) Correct ALLOWED_HOSTS syntax by changing "app:" to "app".

This commit is contained in:
Egor Pavlovich Gorbunov 2025-06-18 23:55:52 +03:00
parent c07803db42
commit 11977ff0c6

View file

@ -10,7 +10,7 @@ SECRET_KEY = getenv("SECRET_KEY", "SUPER_SECRET_KEY")
DEBUG = bool(int(getenv("DEBUG", "1")))
ALLOWED_HOSTS = {
"app:",
"app",
"worker",
"beat",
"localhost",