Skip to content

Instantly share code, notes, and snippets.

@ego008
Created May 8, 2011 08:10
Show Gist options
  • Save ego008/961216 to your computer and use it in GitHub Desktop.
Save ego008/961216 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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment