Skip to content

Instantly share code, notes, and snippets.

@zetas
Created June 14, 2017 22:28
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 zetas/72b2aa408768efd4de04000d2ab27a9c to your computer and use it in GitHub Desktop.
Save zetas/72b2aa408768efd4de04000d2ab27a9c to your computer and use it in GitHub Desktop.
location /sabnzbd {
client_max_body_size 10m;
client_body_buffer_size 128k;
#Timeout if the real server is dead
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
# Advanced Proxy Config
send_timeout 5m;
proxy_read_timeout 240;
proxy_send_timeout 240;
proxy_connect_timeout 240;
# Basic Proxy Config
proxy_set_header Host $host;
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 https;
proxy_redirect http:// $scheme://;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_cache_bypass $cookie_session;
proxy_no_cache $cookie_session;
proxy_buffers 32 4k;
proxy_pass http://127.0.0.1:8085/sabnzbd;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment