]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 3484: Docs: sslproxy_cert_error example flawed
authorGuy Helmer <ghelmer@palisadesys.com>
Sat, 21 Jul 2012 03:39:52 +0000 (21:39 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 21 Jul 2012 03:39:52 +0000 (21:39 -0600)
This is still far from perfect because dstdomain is not really a FAST ACL
either: Its documentation says that it becomes slow on IP addresses.

src/cf.data.pre

index 724a9be1eac217e9006613954efa940f0d573ad7..7798a5bc307c322fbb885c829506ea6c76842f97 100644 (file)
@@ -1711,11 +1711,11 @@ DOC_START
        Use this ACL to bypass server certificate validation errors.
 
        For example, the following lines will bypass all validation errors
-       when talking to servers located at 172.16.0.0/16. All other
+       when talking to servers for example.com. All other
        validation errors will result in ERR_SECURE_CONNECT_FAIL error.
 
-               acl BrokenServersAtTrustedIP dst 172.16.0.0/16
-               sslproxy_cert_error allow BrokenServersAtTrustedIP
+               acl BrokenButTrustedServers dstdomain example.com
+               sslproxy_cert_error allow BrokenButTrustedServers
                sslproxy_cert_error deny all
 
        This clause only supports fast acl types.