Web Developer
Ubuntu SABnzbd+ behind an apache2 proxy
This is a guide on how to replace your ugly sabnzbd url to something nice looking thats easier to remember. Currently the standard url will run on the port 8080 unless you’ve changed it. You could just change it to port 80 to make a nice url but more likely you already run apache on that port.
Example old url
http://myserver.com:8080/sabnzbd/
New url
http://sab.myserver.com
Assuming you already have apache installed you need to make sure you have the following mod’s installed and enabled.
a2enmod proxy
a2enmod proxy_http
a2enmod proxy_html
Now you have these installed and enabled you have to created a new vhost entry that will point your chosen server name to your oringal sabnzbd url.
ServerName sab.myserver.com
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
And thats it! reboot your apache server and your done, you can now access via the new url. I would also stronlgly recommend you enable the password protection in your sabnzb configuration.
References
http://diginc.us/2009/02/ubuntu-sabnzbd-protected-by-an-apache2-proxy-and-htpasswd/
| Print article | This entry was posted by Paul on 5 October 2010 at 8:14 am, and is filed under Apache, Web Tools. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |