🐞 Adds most common hostnames to ALLOWED_HOSTS
`nginx.netboxdocker.docker` and `netboxdocker.docker` are required if our ['reception'][1] thing is used to access the container. Fixes #21 [1]: https://github.com/ninech/reception
This commit is contained in:
parent
03e8536db7
commit
d3dd6a2f69
|
@ -1,7 +1,7 @@
|
||||||
SUPERUSER_NAME=admin
|
SUPERUSER_NAME=admin
|
||||||
SUPERUSER_EMAIL=admin@example.com
|
SUPERUSER_EMAIL=admin@example.com
|
||||||
SUPERUSER_PASSWORD=admin
|
SUPERUSER_PASSWORD=admin
|
||||||
ALLOWED_HOSTS=localhost
|
ALLOWED_HOSTS=localhost 0.0.0.0 127.0.0.1 [::1] netboxdocker.docker nginx.netboxdocker.docker
|
||||||
DB_NAME=netbox
|
DB_NAME=netbox
|
||||||
DB_USER=netbox
|
DB_USER=netbox
|
||||||
DB_PASSWORD=J5brHrAXFLQSif0K
|
DB_PASSWORD=J5brHrAXFLQSif0K
|
||||||
|
|
Loading…
Reference in New Issue