Created
April 1, 2011 02:19
-
-
Save ego008/897633 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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