Merge pull request #592 from lf-/patch-2

Allow multiple ALLOWED_HOSTS on docker
This commit is contained in:
Jeremy Stretch 2016-10-04 15:01:31 -04:00 committed by GitHub
commit 8227a9ff9c

View File

@ -9,7 +9,7 @@ import os
# access to the server via any other hostnames. The first FQDN in the list will be treated as the preferred name.
#
# Example: ALLOWED_HOSTS = ['netbox.example.com', 'netbox.internal.local']
ALLOWED_HOSTS = [os.environ.get('ALLOWED_HOSTS', '')]
ALLOWED_HOSTS = os.environ.get('ALLOWED_HOSTS', '').split(' ')
# PostgreSQL database configuration.
DATABASE = {