Skip to content

Instantly share code, notes, and snippets.

@rmax
Created September 23, 2009 22:00
Show Gist options
  • Save rmax/192333 to your computer and use it in GitHub Desktop.
Save rmax/192333 to your computer and use it in GitHub Desktop.
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