Hey guys,
I have SABNZBD running on Ubuntu server,
Currently I have set my default.conf in /etc/apache2/sites-available
<Location /sabnzbd>
allow from all
ProxyPass http://192.168.1.9:8080/
ProxyPassReverse http://192.168.1.9:8080/
</Location>
I know resolve the sabnzbd, however there is no CSS/JS.
Any ideas?
SABNZBD Reverse Proxy
Forum rules
Help us help you:
Help us help you:
- Are you using the latest stable version of SABnzbd? Downloads page.
- Tell us what system you run SABnzbd on.
- Adhere to the forum rules.
- Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings. - Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Re: SABNZBD Reverse Proxy
This is what our Wiki recommends:
Code: Select all
<Location /sabnzbd>
order deny,allow
deny from all
allow from all
ProxyPass http://localhost:8080/sabnzbd
ProxyPassReverse http://localhost:8080/sabnzbd
</Location>
