Skip to content

Instantly share code, notes, and snippets.

@flyingnn
Forked from ego008/gist:897633
Created November 30, 2012 06:44
Show Gist options
  • Save flyingnn/4174169 to your computer and use it in GitHub Desktop.
Save flyingnn/4174169 to your computer and use it in GitHub Desktop.
GAE-Nginx
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