Skip to content

Instantly share code, notes, and snippets.

@pcdinh
Created October 30, 2009 03:00
Show Gist options
  • Save pcdinh/222073 to your computer and use it in GitHub Desktop.
Save pcdinh/222073 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name sample.mysite.com sample2.mysite.com;
access_log /home/webroot/log/access.log;
error_log /home/webroot/log/error.log;
location ^~ /static {
root /home/webroot/mysite;
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