mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
27 lines
677 B
ApacheConf
27 lines
677 B
ApacheConf
<VirtualHost *:443>
|
|
ProxyPreserveHost On
|
|
|
|
# CHANGE THIS TO YOUR SERVER'S NAME
|
|
ServerName netbox.example.com
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/ssl/certs/netbox.crt
|
|
SSLCertificateKeyFile /etc/ssl/private/netbox.key
|
|
|
|
Alias /static /opt/netbox/netbox/static
|
|
|
|
<Directory /opt/netbox/netbox/static>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
<Location /static>
|
|
ProxyPass !
|
|
</Location>
|
|
|
|
RequestHeader set "X-Forwarded-Proto" expr=%{REQUEST_SCHEME}
|
|
ProxyPass / http://127.0.0.1:8001/
|
|
ProxyPassReverse / http://127.0.0.1:8001/
|
|
</VirtualHost>
|