Fixes: 1) Correct ALLOWED_HOSTS syntax by changing "app:" to "app".
This commit is contained in:
parent
c07803db42
commit
11977ff0c6
1 changed files with 1 additions and 1 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue