Page 1 of 1

SABNZBD Reverse Proxy

Posted: April 29th, 2014, 1:50 am
by djmurray
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?

Re: SABNZBD Reverse Proxy

Posted: April 30th, 2014, 5:21 am
by shypike
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>