How to hide SABnzbd behind Apache

It may be benificial to use the Apache 2 webserver as a front-end for SABnzbd.

Assuming that:

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>
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License