Skip to content

Instantly share code, notes, and snippets.

@ego008
Created April 1, 2011 02:11
Show Gist options
  • Save ego008/897630 to your computer and use it in GitHub Desktop.
Save ego008/897630 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name www.xibu.biz;
location / {
proxy_redirect off;
proxy_pass http://gae-bbs.appspot.com;
proxy_set_header Host "gae-bbs.appspot.com";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect false;
access_log off;
error_log off;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
proxy_pass http://gae-bbs.appspot.com;
expires 30d;
}
location ~ .*\.(js|css)?$ {
proxy_pass http://gae-bbs.appspot.com;
expires 12h;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment