Squid-Proxy lädt nicht nur eine Site, hat kein Problem mit anderen Websites
Ich denke, dieses Problem liegt bei SSL VERIFY HOST auf Squid.
Ich verwende diesen Code in der Squid-Konfiguration, aber er behebt mein Problem nicht: Quelle:https://wiki.squid-cache.org/ConfigExamples/Intercept/SslBumpExplicit
sslproxy_cert_error allow all
sslproxy_flags DONT_VERIFY_PEER
Ich teste das Öffnen dieser Website mit CURL:
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to
ichFESTdieses Problem mit diesem Code auf PHP CURL:
curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($this->curl, CURLOPT_SSL_VERIFYHOST, false);
ich teste das Öffnen dieser Website mit 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.