mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-12-10 13:52:38 +00:00
Because the development of Nginx Unit has been stopped, switch the server to Granian which still allows to serve the Python application and the static files from one server.
14 lines
304 B
Python
14 lines
304 B
Python
from granian.utils.proxies import wrap_wsgi_with_proxy_headers
|
|
from netbox.wsgi import application
|
|
|
|
application = wrap_wsgi_with_proxy_headers(
|
|
application,
|
|
trusted_hosts=[
|
|
"10.0.0.0/8",
|
|
"172.16.0.0/12",
|
|
"192.168.0.0/16",
|
|
"fc00::/7",
|
|
"fe80::/10",
|
|
],
|
|
)
|