Last active
December 28, 2015 11:08
-
-
Save bastosmichael/7490829 to your computer and use it in GitHub Desktop.
Nginx Rails Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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