Sonarr V3 Reverse Proxy Issue

Sonarr version 3.0.4.1058:
Windows 10:
Description of issue:

Hi there. Hoping I can get some help regarding Sonarr V3 and reverse proxy set up?

I’ve been running v2 for a couple of years and have been able to successfully get to the GUI via reverse proxy from outside my network. I upgraded to v3 today and now I am getting an “Error 525 SSL handshake failed”

My NGINX block is configured as follows:

}
location /sonarr {
proxy_pass http://localhost:8383/sonarr/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_no_cache $cookie_session;
}

Can anyone suggest what I need to do to resolve this please?

Hi,

You error seem SSL related but your config block does not reflect ssl settings…

I use the following block:

location /sonarr3 {
proxy_pass http://sonarr3:8989;
access_log /var/log/nginx/sonarr3.access.log main;
}

I have had issues in the past so I would suggest to verify:

  1. base_dir variable
  2. reflect the known path in the nginx config (the location is appened to the proxy_pass address if not ending with a /)
  3. check nginx ssl setup (make it work without ssl and retry adding ssl after working setup)

Hope this will help a bit :slight_smile:

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