Page 1 of 1

Help, couldnt get SABnzbd works behind Apache2.

Posted: May 31st, 2009, 2:30 pm
by cool
For the life of me, i couldnt get the Apache2 working with Sabnzbd. I have read this thread: http://forums.sabnzbd.org/index.php?topic=100.0

I tried all the recommended conf but my Firefox still show no connection established with http://192.169.1.106:0888/sabnzbd/

localhost:8088/sabnzbd/ still works fine.

This is what i add in my httpd.conf

Code: Select all

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so

ProxyRequests Off

<Location /sabnzbd>
order deny,allow
deny from all
allow from all
ProxyPass http://localhost:8088/sabnzbd
ProxyPassReverse http://localhost:8088/sabnzbd
</Location>

I checked error.log and found nothing. Please help, i cant think of anything else.

Re: Help, couldnt get SABnzbd works behind Apache2.

Posted: May 31st, 2009, 2:39 pm
by switch
Can you just specify what port you are running sabnzbd on and what port you are running apache on?

Re: Help, couldnt get SABnzbd works behind Apache2.

Posted: May 31st, 2009, 2:45 pm
by cool
Hi,

I'm currently testing my test bed so i leave everything at default. The Sabnzbd is running at 8088. Which i have been accessing for the past 2 days with localhost:8088/sabnzbd

The Apache2 was installed by default as well so i believe the port is 80. I test it by connecting to http://192.168.1.106/test.html. It loads the test page.

I really dont know what else is there. Really puzzling me...

Re: Help, couldnt get SABnzbd works behind Apache2.

Posted: May 31st, 2009, 3:11 pm
by switch
8080 is the default for sabnzbd, you probably changed it to 8088, however I am just pointing this out to make sure you know.

I take it you are trying to access SABnzbd using:

Code: Select all

http://192.169.1.106/sabnzbd/
and not

Code: Select all

http://192.169.1.106:0888/sabnzbd/
as you mentioned in your first post.

Re: Help, couldnt get SABnzbd works behind Apache2.

Posted: June 1st, 2009, 11:00 pm
by cool
switch wrote: 8080 is the default for sabnzbd, you probably changed it to 8088, however I am just pointing this out to make sure you know.

I take it you are trying to access SABnzbd using:

Code: Select all

http://192.169.1.106/sabnzbd/
and not

Code: Select all

http://192.169.1.106:0888/sabnzbd/
as you mentioned in your first post.
Hmm i forgot to update this thread. I made a terrible silly mistake of what you pointed out above. Thanks for replying...