Skip to content

Instantly share code, notes, and snippets.

@skorotkiewicz
Created May 2, 2014 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save skorotkiewicz/8f033b5fd5c49294c5df to your computer and use it in GitHub Desktop.
Save skorotkiewicz/8f033b5fd5c49294c5df to your computer and use it in GitHub Desktop.
Nginx proxy_pass
server {
# listen 66.225.195.83;
server_name synchtube.itunix.eu;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
proxy_pass http://synchtube.itunix.eu:1337;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_redirect off;
proxy_buffering off;
proxy_set_header Host static.example.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment