From 9ca3f0acd47a6c39fdec362b8edca80c8a8cfdb1 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Sun, 30 Nov 2014 18:22:10 +0000 Subject: [PATCH] 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 --- 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 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 -- 2.47.3