Reverse Proxies
Summary
OWI
Subfolders
location /sonarr {
proxy_pass http://127.0.0.1:8989/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;
# Allow the Sonarr API through if you enable Auth on the block above
location /sonarr/api {
auth_request off;
proxy_pass http://127.0.0.1:8989/sonarr/api;
}
}Subdomains
Updating SSL Certificates
Reloading the NGINX config
Miscellaneous Errors
Last updated
Was this helpful?