Page 1 of 1

Problem with Sickbeard script, nginx, webroot and localhost

Posted: April 24th, 2014, 4:46 pm
by niietzshe
I have reverse proxies setup with nginx, if I set the host to my homes IP or dnsname it works, if I set it to localhost it doesn't (I think it's the port issue as it tries on http://localhost:/sickbeard).

Here's my cfg file:
[SickBeard]
host=localhost
port=
username=#
password=#
web_root=/sickbeard
ssl=0
Here's my nginx reverse proxy.

Code: Select all

location /sickbeard {
                proxy_pass http://localhost:8081;
                proxy_redirect    off;
                proxy_set_header  Host             $host;
                proxy_set_header  X-Real-IP        $remote_addr;
                proxy_set_header  X-Forwarded-For  $proxy_add_x_forwarded_for;
        }
Because I'm loosing dyndns soon I wanted it to run just off localhost and not an external ip or dns name.
Any ideas why this isn't working?

Thanks
Niietzshe

Re: Problem with Sickbeard script, nginx, webroot and localh

Posted: April 25th, 2014, 12:28 am
by sander
Where is your SABnzbd question? This is the SABnzbd forum.

Re: Problem with Sickbeard script, nginx, webroot and localh

Posted: April 25th, 2014, 2:19 am
by niietzshe
And this is a sabtosickbeard post process script, in the post-processing script category...