Created
September 23, 2009 22:00
-
-
Save rmax/192333 to your computer and use it in GitHub Desktop.
This file contains 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 chenko.votoxvoto.com chenko.local; | |
access_log /home/rho/Webroot/chenko/logs/access.log; | |
error_log /home/rho/Webroot/chenko/logs/error.log; | |
location ^~ /static { | |
root /home/rho/Webroot/chenko/website; | |
expires max; | |
} | |
location / { | |
proxy_set_header Host $http_host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Scheme $scheme; | |
proxy_redirect false; | |
proxy_pass_header Server; | |
proxy_pass http://127.0.0.1:8000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment