squid proxy don't load only one site, don't have a problem with other websites
I think this problem from SSL VERIFY HOST on squid.
I use this code on squid config but don't fix my problem: Source: https://wiki.squid-cache.org/ConfigExamples/Intercept/SslBumpExplicit
sslproxy_cert_error allow all
sslproxy_flags DONT_VERIFY_PEER
i test for open this website with CURL:
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to
i FIXED this problem with this code on PHP CURL:
curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($this->curl, CURLOPT_SSL_VERIFYHOST, false);
i test for open this website with 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.