changed ALLOWED_SITES to include whatever we call the host site

Changes to be committed:
	modified:   share/templates/conf/django/files/local.jinja2
This commit is contained in:
Ronny Abraham 2017-08-28 23:53:42 +03:00
parent 2c19ba589b
commit 6691cd1af8

View file

@ -70,7 +70,7 @@ USE_DEBUG_TOOLBAR = DEBUG
# allow template debug outputs on {{ project_branch }} environment # allow template debug outputs on {{ project_branch }} environment
INTERNAL_IPS = ['127.0.0.1', '127.0.0.2', '127.0.0.3', ] 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 # Debug logging to the console