Skip to content

Instantly share code, notes, and snippets.

@drudge
Created June 29, 2012 15:23
Show Gist options
  • Save drudge/3018585 to your computer and use it in GitHub Desktop.
Save drudge/3018585 to your computer and use it in GitHub Desktop.
server {
server_name something.domain.com;
root /home/sites/something.domain.com/static;
client_max_body_size 2G;
location / {
try_files $uri @some_site;
}
location @some_site {
proxy_pass http://127.0.0.1:9090;
proxy_redirect off;
proxy_set_header Host $host;
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