Problem with Sickbeard script, nginx, webroot and localhost

Come up with a useful post-processing script? Share it here!
Post Reply
niietzshe
Newbie
Newbie
Posts: 2
Joined: April 24th, 2014, 4:32 pm

Problem with Sickbeard script, nginx, webroot and localhost

Post 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
User avatar
sander
Release Testers
Release Testers
Posts: 9258
Joined: January 22nd, 2008, 2:22 pm

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

Post by sander »

Where is your SABnzbd question? This is the SABnzbd forum.
niietzshe
Newbie
Newbie
Posts: 2
Joined: April 24th, 2014, 4:32 pm

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

Post by niietzshe »

And this is a sabtosickbeard post process script, in the post-processing script category...
Post Reply