Skip to content

Instantly share code, notes, and snippets.

@unorthodoxgeek
Created September 14, 2012 20:37
Show Gist options
  • Save unorthodoxgeek/3724626 to your computer and use it in GitHub Desktop.
Save unorthodoxgeek/3724626 to your computer and use it in GitHub Desktop.
nginx configuration for unicorn
upstream app_server {
server unix:/tmp/unicorn.sock fail_timeout=0;
}
server {
root /srv/deploy/current/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_server;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment