From: Eric Covener Date: Sun, 30 Nov 2014 18:22:10 +0000 (+0000) Subject: use an actual list since we're gong to the trouble to use -in X-Git-Tag: 2.5.0-alpha~3666 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19de340ec4995b986cbe6fe01294abd97ff63e99;p=thirdparty%2Fapache%2Fhttpd.git use an actual list since we're gong to the trouble to use -in git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1642590 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_authz_core.xml b/docs/manual/mod/mod_authz_core.xml index aace72121aa..670604e853e 100644 --- a/docs/manual/mod/mod_authz_core.xml +++ b/docs/manual/mod/mod_authz_core.xml @@ -186,12 +186,12 @@ SetEnvIf User-Agent ^KnockKnock/2\.0 let_me_in <RequireAll> Require expr "!(%{QUERY_STRING} =~ /secret/)" - Require expr "%{REQUEST_URI} in { '/example.cgi' }" + Require expr "%{REQUEST_URI} in { '/example.cgi', '/other.cgi' }" </RequireAll> - Require expr "!(%{QUERY_STRING} =~ /secret/) && %{REQUEST_URI} in { '/example.cgi' }" + Require expr "!(%{QUERY_STRING} =~ /secret/) && %{REQUEST_URI} in { '/example.cgi', '/other.cgi' }"

The syntax is described in the ap_expr