Created
April 1, 2011 02:11
-
-
Save ego008/897630 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; | |
} | |
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