Skip to content

Instantly share code, notes, and snippets.

@zaiste
Created March 30, 2013 17:48
Show Gist options
  • Save zaiste/5277638 to your computer and use it in GitHub Desktop.
Save zaiste/5277638 to your computer and use it in GitHub Desktop.
upstream APP_thin {
server 127.0.0.1:3000;
}
server {
listen 80;
server_name APP.dev;
root /Users/zaiste/code/APP/public;
try_files $uri/index.html $uri.html $uri @app;
location @app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://APP_thin;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment