How to hide SABnzbd behind Apache
It may be benificial to use the Apache 2 webserver as a front-end for SABnzbd.
Assuming that:
- you have installed and configured Apache 2 correctly
- SABnzbd listens to http://localhost:8080
this is what you need to add to Apache's httpd.conf1 file.
<Location /sabnzbd>
order deny,allow
deny from all
allow from all
ProxyPass http://localhost:8080/sabnzbd
ProxyPassReverse http://localhost:8080/sabnzbd
</Location>