Search found 2 matches

by macnix
February 2nd, 2012, 6:42 pm
Forum: General Help
Topic: [SOLVED] nginx reverse proxy
Replies: 1
Views: 4170

Re: nginx reverse proxy

To answer my own question, there was nothing wrong with that config. I only had to add an http vhost which would redirect everything to https: server { listen 80; server_name sabnzbd.domain.com; location / { rewrite ^ https://$host$request_uri break; } }
by macnix
February 2nd, 2012, 5:42 am
Forum: General Help
Topic: [SOLVED] nginx reverse proxy
Replies: 1
Views: 4170

[SOLVED] nginx reverse proxy

The reverse proxy is working fine, except that sabnzbd keeps redirecting to HTTP and adding /sabnzbd to the URI. Anyone got this working properly with nginx? I'm running sabnzbd 0.6.14 with HTTP port 8080 & HTTPS disabled. If I enable HTTPS port 9090 and proxy all requests to it, it times out. T...