From b27807abb9a8f952387e943a38f2987ac88179b2 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Sun, 30 Nov 2014 18:22:58 +0000 Subject: [PATCH] Merge r1642590 from trunk: 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/branches/2.4.x@1642592 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_authz_core.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/mod/mod_authz_core.xml b/docs/manual/mod/mod_authz_core.xml index 3d58f569bb..ede7dbad17 100644 --- a/docs/manual/mod/mod_authz_core.xml +++ b/docs/manual/mod/mod_authz_core.xml @@ -234,12 +234,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 -- 2.50.1