You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2013/01/09 13:10:53 UTC

svn commit: r1430814 - /httpd/httpd/trunk/docs/manual/howto/auth.xml

Author: rjung
Date: Wed Jan  9 12:10:52 2013
New Revision: 1430814

URL: http://svn.apache.org/viewvc?rev=1430814&view=rev
Log:
Remove reference to RequireNone, which is no longer
used in the example since r1341749.

Add some hopefully interesting other explanation
instead.

Modified:
    httpd/httpd/trunk/docs/manual/howto/auth.xml

Modified: httpd/httpd/trunk/docs/manual/howto/auth.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/auth.xml?rev=1430814&r1=1430813&r2=1430814&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.xml (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.xml Wed Jan  9 12:10:52 2013
@@ -549,12 +549,11 @@ Require group GroupName
 </RequireAll>
         </highlight>
 
-        <p>The above example uses the <directive module="mod_authz_core"
-        type="section">RequireNone</directive> directive
-        to make sure that none of the
-        <directive module="mod_authz_core">Require</directive> directives
-        contained within it
-        match their parameters before granting access.</p>
+        <p>Using <directive module="mod_authz_core" type="section">RequireAll</directive>
+        with multiple <directive module="mod_authz_core"
+        type="section">Require</directive> directives, each negated with <code>not</code>,
+        will only allow access, if all of negated conditions are true. In other words,
+        access will be blocked, if any of the negated conditions fails.</p>
 
     </section>