1
phithon 2015 年 6 月 14 日
看你vps的位置,我把vps移到日本就会302跳转,于是我把传上游的HOST改成www.google.co.jp就好了。
|
3
imWBB 2015 年 6 月 14 日
|
5
yeyeye 2015 年 6 月 14 日
不带cookie会跳转
|
6
chinabrowser 2015 年 6 月 15 日 via Android
多个GGC IP负载均衡才行 用单个IP太久就会被识别为机器人
|
7
chinabrowser 2015 年 6 月 15 日 via Android
这是我用的配置 服务器是日本的 用的HE的IPv6
server { listen 80; server_name www.example.org example.org; ssl on; ssl_certificate /root/server.crt; ssl_certificate_key /root/server.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers ALL:-ADH:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP; location / { proxy_redirect https://www.google.co.jp/ /; proxy_set_header Host "www.google.co.jp"; proxy_set_header Accept-Encoding ""; proxy_set_header User-Agent $http_user_agent; proxy_set_header Accept-Language "zh-CN"; proxy_set_header Cookie "PREF=ID=047808f19f6com346:U=0f62f33dd8549d11:FF=2:LD=zh-CN:NW=1:TM=1325338577:LM=1332142444:GM=1:SG=2:S=rE0SyJh2W1IQ-Maw"; proxy_pass https://hosts; subs_filter www.google.co.jp example.org; subs_filter google.co.jp example.org; sub_filter_once off; } } server { listen 80; server_name www.example.org example.org; rewrite ^(.*) https://example.org/$1 permanent; } upstream hosts { server [2404:6800:4004:80c::116]:443 max_fails=3; server [2404:6800:4004:80c::171]:443 max_fails=3; server [2404:6800:4004:80c::185]:443 max_fails=3; server [2404:6800:4004:80c::119]:443 max_fails=3; server [2404:6800:4004:80c::99]:443 max_fails=3; server [2404:6800:4004:80c::25]:443 max_fails=3; server [2404:6800:4004:80c::212]:443 max_fails=3; server [2404:6800:4004:80c::23]:443 max_fails=3; server [2404:6800:4004:80c::24]:443 max_fails=3; server [2404:6800:4004:80c::233]:443 max_fails=3; server [2404:6800:4004:80c::116]:443 max_fails=3; server [2404:6800:4004:80c::117]:443 max_fails=3; server [2404:6800:4004:80c::118]:443 max_fails=3; server [2404:6800:4004:80c::119]:443 max_fails=3; server [2404:6800:4004:80c::120]:443 max_fails=3; server [2404:6800:4004:80c::121]:443 max_fails=3; server [2404:6800:4004:80c::212]:443 max_fails=3; server [2404:6800:4004:80c::123]:443 max_fails=3; server [2404:6800:4004:80c::241]:443 max_fails=3; server [2404:6800:4004:80c::225]:443 max_fails=3; server [2404:6800:4004:80c::1616]:443 max_fails=3; server [2404:6800:4004:80c::1741]:443 max_fails=3; server [2404:6800:4004:80c::1865]:443 max_fails=3; server [2404:6800:4004:80c::1129]:443 max_fails=3; server [2404:6800:4004:80c::939]:443 max_fails=3; server [2404:6800:4004:80c::275]:443 max_fails=3; server [2404:6800:4004:80c::4212]:443 max_fails=3; server [2404:6800:4004:80c::233]:443 max_fails=3; server [2404:6800:4004:80c::2422]:443 max_fails=3; server [2404:6800:4004:80c::2323]:443 max_fails=3; server [2404:6800:4004:80c::1216]:443 max_fails=3; server [2404:6800:4004:80c::1197]:443 max_fails=3; server [2404:6800:4004:80c::1108]:443 max_fails=3; server [2404:6800:4004:80c::11a9]:443 max_fails=3; server [2404:6800:4004:80c::12b0]:443 max_fails=3; server [2404:6800:4004:80c::12c1]:443 max_fails=3; server [2404:6800:4004:80c::21c2]:443 max_fails=3; server [2404:6800:4004:80c::1263]:443 max_fails=3; server [2404:6800:4004:80c::24a1]:443 max_fails=3; server [2404:6800:4004:80c::22a5]:443 max_fails=3; } |
8
ltm OP |
9
ltm OP @chinabrowser 多个IP,又加上 proxy_set_header Host "www.google.com.hk"; 这句话终于又能打开了。非常感谢。
正在研究proxy_set_header 什么作用。 |