Skip to content

Instantly share code, notes, and snippets.

@Dan0sz
Created October 21, 2018 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dan0sz/38e8c9e7048e214300960dc35721d5fc to your computer and use it in GitHub Desktop.
Save Dan0sz/38e8c9e7048e214300960dc35721d5fc to your computer and use it in GitHub Desktop.
Nginx configuration for reverse proxy for SABnzbd, Sonarr, Radarr and Transmission
server_name nas.yourdomain.com 192.168.xxx.xxx;
location /sabnzbd {
proxy_pass https://localhost:9080/sabnzbd;
}
location /sonarr {
proxy_pass http://localhost:8989/sonarr;
}
location /radarr {
proxy_pass http://localhost:7878/radarr;
}
location /transmission {
proxy_pass http://localhost:9091/transmission;
}
location /nginx_status {
stub_status on;
access_log off;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment