1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Allow multiple ALLOWED_HOSTS on docker

Change ALLOWED_HOSTS to be a space delimited list.
This commit is contained in:
lf
2016-10-02 21:01:29 -06:00
committed by GitHub
parent 36066068d4
commit b68c64041e

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. # 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'] # 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. # PostgreSQL database configuration.
DATABASE = { DATABASE = {