У меня есть quid proxy 3.5, настроенный с помощью директивы https_port:
https_port 3128 cert=/etc/squid/ssl.pem
Клиент curl работает очень хорошо:
curl -U user:pass -Ix https://proxy.mydomain.com:3128 https://google.com
HTTP/1.1 200 Connection established
HTTP/2 301
location: https://www.google.com/
...
То же самое не работает с wget:
wget -e https_proxy=https://user:pass@proxy.mydomain.com:3128 https://example.com
--2020-04-21 16:58:08-- https://example.com/
Resolving proxy.mydomain.com (proxy.mydomain.com)... 10.0.0.1
Connecting to proxy.mydomain.com (proxy.mydomain.com)|10.0.0.1|:3128... connected.
Failed reading proxy response: Connection reset by peer
Retrying.
--2020-04-21 16:58:09-- (try: 2) https://example.com/
Connecting to proxy.mydomain.com (proxy.mydomain.com)|10.0.0.1|:3128... connected.
Failed reading proxy response: Connection reset by peer
Retrying.
Нет ошибок в squid cache.log
Заранее спасибо!