Skip to content

Instantly share code, notes, and snippets.

@bastosmichael
Last active December 28, 2015 11:08
Show Gist options
  • Save bastosmichael/7490829 to your computer and use it in GitHub Desktop.
Save bastosmichael/7490829 to your computer and use it in GitHub Desktop.
Nginx Rails Config
server {
listen 80;
server_name localhost;
root /home/ubuntu/app/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://127.0.0.1:3000;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /home/ubuntu/app/current/public;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment