SABnzbd behind Apache and on another computer?

Get help with all aspects of SABnzbd
Forum rules
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.
Post Reply
TinCanFury
Newbie
Newbie
Posts: 35
Joined: December 10th, 2009, 3:49 pm

SABnzbd behind Apache and on another computer?

Post by TinCanFury »

my main server running apache is on 192.168.1.151
SABnzbd is running on 192.168.1.152:8008/sabnzbd

anyone know how I can properly set it up so apache redirects all requests for /sabnzbd to the sabnzbd server?
thanks!
TinCanFury
Newbie
Newbie
Posts: 35
Joined: December 10th, 2009, 3:49 pm

Re: SABnzbd behind Apache and on another computer?

Post by TinCanFury »

ack, nevermind, got it:

/etc/apache2/sites-available/sabnzbd

Code: Select all

ProxyPass /sabnzbd http://192.168.1.152:8080/sabnzbd
ProxyPassReverse /sabnzbd http://192.168.1.152:8080/sabnzbd
<Location /sabnzbd>
        Options Indexes FollowSymLinks MultiViews
        AuthUserFile /etc/apache2/htpasswd
        AuthName "Authenticate Yourself."
        AuthType Basic
        Require valid-user
        Order allow,deny
        Allow from all
</Location>
Post Reply