From 6691cd1af8689038482bf2bb616d7663f8efafbc Mon Sep 17 00:00:00 2001 From: Ronny Abraham Date: Mon, 28 Aug 2017 23:53:42 +0300 Subject: [PATCH] changed ALLOWED_SITES to include whatever we call the host site Changes to be committed: modified: share/templates/conf/django/files/local.jinja2 --- share/templates/conf/django/files/local.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/templates/conf/django/files/local.jinja2 b/share/templates/conf/django/files/local.jinja2 index 980b10f..bc06c78 100644 --- a/share/templates/conf/django/files/local.jinja2 +++ b/share/templates/conf/django/files/local.jinja2 @@ -70,7 +70,7 @@ USE_DEBUG_TOOLBAR = DEBUG # allow template debug outputs on {{ project_branch }} environment INTERNAL_IPS = ['127.0.0.1', '127.0.0.2', '127.0.0.3', ] -ALLOWED_HOSTS = [configuration.project.extendedname, ] +ALLOWED_HOSTS = [configuration.project.extendedname, configuration.project.host] # ----------------------------------------- # Debug logging to the console