You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/07/20 17:00:09 UTC

svn commit: r1363816 - /httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml

Author: humbedooh
Date: Fri Jul 20 15:00:09 2012
New Revision: 1363816

URL: http://svn.apache.org/viewvc?rev=1363816&view=rev
Log:
Backport r1341749: Simplyfy Require example.

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml?rev=1363816&r1=1363815&r2=1363816&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml Fri Jul 20 15:00:09 2012
@@ -543,11 +543,9 @@ Require group GroupName
         <highlight language="config">
 &lt;RequireAll&gt;
     Require all granted
-    &lt;RequireNone&gt;
-        Require ip 192.168.205
-        Require host phishers.example.com moreidiots.example
-        Require host ke
-    &lt;/RequireNone&gt; 
+    Require not ip 192.168.205
+    Require not host phishers.example.com moreidiots.example
+    Require not host ke
 &lt;/RequireAll&gt;
         </highlight>