From 1bb9686f7b703a077e57a8fd38c1a86a15f42879 Mon Sep 17 00:00:00 2001 From: RNL Date: Thu, 19 Feb 2026 13:44:41 +1100 Subject: [PATCH] allow local network hosts --- standalone/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standalone/settings.py b/standalone/settings.py index 4b8a863..9f9eb4d 100644 --- a/standalone/settings.py +++ b/standalone/settings.py @@ -19,7 +19,7 @@ SECRET_KEY = os.environ.get( # SECURITY WARNING: don't run with debug turned on in production! DEBUG = os.environ.get("DEBUG", "True").lower() in ("true", "1", "yes") -ALLOWED_HOSTS = os.environ.get("ALLOWED_HOSTS", "localhost,127.0.0.1").split(",") +ALLOWED_HOSTS = ["*"] # Application definition INSTALLED_APPS = [