Skip to content

Instantly share code, notes, and snippets.

@ego008
Created April 1, 2011 02:19
Show Gist options
  • Save ego008/897633 to your computer and use it in GitHub Desktop.
Save ego008/897633 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;
}
}
#这个方式是直接转向,每个域名绑定一个对应的*.appspot.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment