一直都好好的,今天突然发现打开页面500了,几个站都是这样,能ping通,是vps的ip,说明反向代理应该没问题。
翻墙后访问gae的原始地址能打开,用绑定的域名访问却还是500;问国外的朋友能不能打开,也说是500。
是不是因为google大姨妈的原因?其他用反向代理的同学有没有这个问题?
附nginx.conf:
upstream ghs {
----ip_hash;
----server
ghs.google.com;
----server 69.28.54.55;
}
# The
ghs.google.com server
----server {
--------listen 80;
--------server_name
www.jiyin.it www.yangbodu.com www.2wen.it;
--------location / {
------------proxy_redirect off;
------------proxy_set_header Host $host;
------------proxy_pass
http://ghs;
------------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;
--------}
----}