Skip to content

Commit 3cf6357

Browse files
authored
settings: add lando.test to allowed hosts (bug 1885346) (#47)
1 parent 95f2426 commit 3cf6357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lando/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
)
2323

2424
DEBUG = os.getenv("DEBUG", "").lower() in ("true", "1")
25-
ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS", "localhost,lando.local").split(",")
25+
ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS", "localhost,lando.local,lando.test").split(",")
2626
CSRF_TRUSTED_ORIGINS = os.getenv(
2727
"CSRF_TRUSTED_ORIGINS", "https://localhost,https://lando.local"
2828
).split(",")

0 commit comments

Comments
 (0)