From 0643a9452304414e571dd98cecc6954a8497ec67 Mon Sep 17 00:00:00 2001 From: Jan Koppe Date: Mon, 20 Apr 2020 18:56:55 +0200 Subject: [PATCH] allow any hostname to be used in connections (only intended for debugging) --- portier/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portier/settings.py b/portier/settings.py index b6a06d4..d64ef12 100644 --- a/portier/settings.py +++ b/portier/settings.py @@ -25,7 +25,7 @@ SECRET_KEY = '-xcxbgd8w&w&nv0-e!5=kd%u5esjt07$h5*+$goica9nc$l!(9' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ['*'] # Application definition