Sonarr reverse proxy + nginx + Windows 10

I’m trying to do the sonarr reverse proxy, so i cand edit some things from another pc.

I have followed the tutorials from HTPC-Guides.


Sonarr Config.

Bind Adress: 192.168.1.142
Port Number 38082
Url Base: /sonarr
Enable SSL: NO
Authentication: YES


Nginx Configuration

server {
listen 80;
server_name sjdaniel.chickenkiller.com, 192.168.1.142;
location /sonarr {
proxy_pass http://127.0.0.1:38082;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}


  • Sonarr is running good in the local machine.

  • Deluge also.

  • The account in http://freedns.afraid.org is created and Afraid Updater running

  • Portfoward port 80 (TCP)

  • Windows 10 Home, don’t know if it makes difference.

  • Nginx NO.
    –Nginx i made also like the tutorial, then i started in Command prompt, and it seems ok. But when in the browser i put 127.0.0.1, just appear a blank page. And also when i press Ctrl+Alt+Del to see the processes running i can’t see nginx.

Best Regards


But with ports is working:

Sonarr: http://daso.crabdance.com:38082 and then it stays http://daso.crabdance.com:38082/sonarr/
Deluge: http://daso.crabdance.com:38081

But http://daso.crabdance.com/sonarr is not working.

If the reverse proxy is for multiple servers on port 80, like in this case deluge and Sonarr then in my setup I usually have

listen ::[]:80; instead of listen 80; for every proxy pass configuration.

My setup is a little bit different since I don’t use url base I use a whole Lan domain prefix

like http://Sonarr.lan and http://transmission.lan

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.