]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
use an actual list since we're gong to the trouble to use -in
authorEric Covener <covener@apache.org>
Sun, 30 Nov 2014 18:22:10 +0000 (18:22 +0000)
committerEric Covener <covener@apache.org>
Sun, 30 Nov 2014 18:22:10 +0000 (18:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1642590 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_authz_core.xml

index aace72121aa749b48e488c8a3e02de0276ee9e83..670604e853e4826ea23e1c7c24d1d9afd5948921 100644 (file)
@@ -186,12 +186,12 @@ SetEnvIf User-Agent ^KnockKnock/2\.0 let_me_in
     <highlight language="config">
 &lt;RequireAll&gt;
     Require expr "!(%{QUERY_STRING} =~ /secret/)"
-    Require expr "%{REQUEST_URI} in { '/example.cgi' }" 
+    Require expr "%{REQUEST_URI} in { '/example.cgi', '/other.cgi' }" 
 &lt;/RequireAll&gt;
     </highlight>
 
     <highlight language="config">
-        Require expr "!(%{QUERY_STRING} =~ /secret/) &amp;&amp; %{REQUEST_URI} in { '/example.cgi' }" 
+        Require expr "!(%{QUERY_STRING} =~ /secret/) &amp;&amp; %{REQUEST_URI} in { '/example.cgi', '/other.cgi' }" 
     </highlight>
 
   <p>The syntax is described in the <a href="../expr.html">ap_expr</a>