SAE 有 rewrite 功能,但不能根据响应 header 做重定向,只好在VPS 上用 nginx 试了。
反向代理
用 nginx 做反向代理的性能很高,约有10%的性能损失,对于大多数站点,这点损失没多大影响。
nginx 反向代理的配置如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
###SAE
server {
listen 80;
server_name www.saespot.com;
location / {
proxy_redirect off;
proxy_pass http://saepy.sinaapp.com;
proxy_set_header Host "saepy.sinaapp.com";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off;
error_log off;
}
}
使用这种方式可以绑定未备案的域名,但访问速度变慢了很多。
另一个缺点是,还不能把二级域名 xxx.sinaapp.com
定向到已绑定的域名。
总结
这里只是尝试,最好不要用这种方式绑定域名,VPS 在国外,访问超慢,听说可以写信给SAE 要求绑定域名,但要求域名已备案。个人对备案没有经验,以前尝试备过,没成功。谁有空域名+SAE 备案经验?介绍一下。
更新
已经完善的SAE 平台已经有代备案的入口
本文网址: https://pylist.com/topic/13.html 转摘请注明来源