squid 代理不会仅加载一个站点,不会进行 SSL 验证主机

squid 代理不会仅加载一个站点,不会进行 SSL 验证主机

squid 代理不会只加载一个网站,其他网站没有问题

我认为这个问题来自 squid 上的 SSL VERIFY HOST。

我在 squid 配置上使用了此代码,但没有解决我的问题:来源:https://wiki.squid-cache.org/ConfigExamples/Intercept/SslBumpExplicit

sslproxy_cert_error allow all
sslproxy_flags DONT_VERIFY_PEER

我测试使用 CURL 打开此网站:

curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to

固定的PHP CURL 上的此代码存在此问题:

curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($this->curl, CURLOPT_SSL_VERIFYHOST, false);

我测试使用 WGET 打开此网站:

--2018-09-03 19:17:31--  https://destenationWebsite.com
Resolving destenationWebsite.com (destenationWebsite.com)... ip
Connecting to destenationWebsite.com(destenationWebsite.com)|ip|:443... connected.
Unable to establish SSL connection.

相关内容