正解
server{
listen 9099;
#server_name *;
charset utf-8;
location /{
resolver 223.5.5.5 114.114.114.114 valid=60s;
proxy_set_header Host $http_x_target_host;
proxy_pass https://$Host;
}
}
~
这样可以,但是ms有些网站访问异常
【 在 gameplayer 的大作中提到: 】
: 感觉这个是为了解密,捕获客户端访问的信息。
: 客户端输入的是http网址,所以没有了加密以及检查证书的步骤。而代理服务器与网站
: 通信用的可能是https,它解密后转发给客户端,同时记录了双方来回的数据。
: ...................
--
FROM 1.192.214.*