Sonarr behind ngnix reverse proxy?

Hello all

I setup sonarr behind ngnix reverse proxy by adding to /etc/nginx/sites-enabled/dealt:

Now I can open sonarr by hitting URL as - /sonarr

    ## Sonarr ##
    location /sonarr {
         proxy_pass http://127.0.0.1:8989;
         proxy_set_header Host $host;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

Wonder if I want to modify URL somehow say sonarr. how do so ?

Thx

FWIW, I use caddy with an SSL front end and http backend

Caddy File:


https://sonarr.XXX.duckdns.org {
        tls self_signed
        proxy / http://10.1.20.101:8989
}

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