My netbox.conf file is:
<VirtualHost *:8086>
ProxyPreserveHost On
# CHANGE THIS TO YOUR SERVER'S NAME
ServerName x.x.x.x:p #ip:port
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:8087/
ProxyPassReverse / http://127.0.0.1:8087/
The Apache server is listening on port 8086, Gunicorn is listening on port 8087. All my GET requests work fine. Can you please help me troubleshoot