Created
January 3, 2012 20:04
-
-
Save malomalo/1556642 to your computer and use it in GitHub Desktop.
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
upstream mls { | |
server 127.0.0.1:5000; | |
} | |
server { | |
listen 80; | |
server_name mls; | |
access_log /var/log/nginx/mls.access.log; | |
root /srv/mls/staging/current/public; | |
try_files /maintenance.html $uri/index.html $uri.html $uri @app; | |
location @app { | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $http_host; | |
proxy_redirect off; | |
proxy_pass http://mls_staging; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment