<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body text="#000066" bgcolor="#FFFFFF">
<div class="moz-cite-prefix">On 24.8.2016 13:18, Antony Stone wrote:<br>
</div>
<blockquote
cite="mid:201608241318.30521.Antony.Stone@squid.open.source.it"
type="cite">
<pre wrap="">Unfortunately it's not Squid that's the challenge - it's the browser.
If you're using Firefox and/or Chrome, you should be okay.
See "Encrypted browser-Squid connection" at the bottom of
<a class="moz-txt-link-freetext" href="http://wiki.squid-cache.org/Features/HTTPS">http://wiki.squid-cache.org/Features/HTTPS</a>
Antony.
</pre>
</blockquote>
I have seen that, it is the cause of my subscription to this list.<br>
I haven't been able to find any usable hints.<br>
My config attempt fails<br>
<br>
<br>
acl SSL_ports port 443<br>
acl Safe_ports port 80 # http<br>
acl Safe_ports port 21 # ftp<br>
acl Safe_ports port 443 # https<br>
acl Safe_ports port 70 # gopher<br>
acl Safe_ports port 210 # wais<br>
acl Safe_ports port 1025-65535 # unregistered ports<br>
acl Safe_ports port 280 # http-mgmt<br>
acl Safe_ports port 488 # gss-http<br>
acl Safe_ports port 591 # filemaker<br>
acl Safe_ports port 777 # multiling http<br>
acl Safe_ports port 901 # SWAT<br>
acl CONNECT method CONNECT<br>
http_access deny !Safe_ports<br>
http_access deny CONNECT !SSL_ports<br>
http_access allow localhost manager<br>
http_access deny manager<br>
http_access deny to_localhost<br>
<br>
auth_param basic program /usr/libexec/squid/basic_pam_auth<br>
auth_param basic children 5<br>
auth_param basic realm Proxy Authentication Required<br>
auth_param basic credentialsttl 2 hours<br>
<br>
acl authenticated proxy_auth REQUIRED<br>
http_access allow authenticated<br>
http_access deny all<br>
<br>
https_port 8443 \<br>
cert=/etc/letsencrypt/live/sklad.duckdns.org/cert.pem \<br>
key=/etc/letsencrypt/live/sklad.duckdns.org/key.pem \<br>
cleintca=/etc/letsencrypt/live/sklad.duckdns.org/fullchain.pem \<br>
tls-dh=/etc/ssl/certs/dhparam.pem \<br>
sslproxy_options=NO_SSLv2,NO_SSLv3,SINGLE_DH_USE \<br>
cipher=HIGH<br>
cache_dir aufs /var/cache/squid 512 16 256<br>
coredump_dir /var/cache/squid<br>
refresh_pattern ^ftp: 1440 20% 10080<br>
refresh_pattern ^gopher: 1440 0% 1440<br>
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0<br>
refresh_pattern . 0 20% 4320<br>
</body>
</html>