]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 3320: miss_access description confusing
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 2 Sep 2011 09:50:43 +0000 (03:50 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 2 Sep 2011 09:50:43 +0000 (03:50 -0600)
src/cf.data.pre

index f7b110307eaaf38a25c8fe781c6ab226dcf19a1a..bd4d751f600910c6d2171b21c66b471aa158d48a 100644 (file)
@@ -1028,18 +1028,23 @@ TYPE: acl_access
 LOC: Config.accessList.miss
 DEFAULT_IF_NONE: allow all
 DOC_START
-       Use to force your neighbors to use you as a sibling instead of
-       a parent.  For example:
+       Determins whether network access is permitted when satisfying a request.
+
+       For example;
+           to force your neighbors to use you as a sibling instead of
+           a parent.
 
                acl localclients src 172.16.0.0/16
                miss_access allow localclients
                miss_access deny  !localclients
 
-       This means only your local clients are allowed to fetch
-       MISSES and all other clients can only fetch HITS.
+       This means only your local clients are allowed to fetch relayed/MISS
+       replies from the network and all other clients can only fetch cached
+       objects (HITs).
+
 
-       By default, allow all clients who passed the http_access rules
-       to fetch MISSES from us.
+       The default for this setting allows all clients who passed the
+       http_access rules to relay via this proxy.
 
        This clause only supports fast acl types.
        See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.