From 72e1637fecc793924afa695425458b7421f505b5 Mon Sep 17 00:00:00 2001 From: Nick Kew Date: Thu, 27 Aug 2009 16:28:06 +0000 Subject: [PATCH] PR46665 workaround docs: remove ambiguity about how it will fail if an expression is rejected. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@808499 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_proxy.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml index dded018d46d..09e29da066d 100644 --- a/docs/manual/mod/mod_proxy.xml +++ b/docs/manual/mod/mod_proxy.xml @@ -951,9 +951,9 @@ expressions ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com:8000$1 -

in our previous example, it would fail. This is a bug - (PR 46665 in the ASF bugzilla), and the workaround is to - reformulate the match, so the above will work if expressed as

+

in our previous example, it would fail with a syntax error + at server startup. This is a bug (PR 46665 in the ASF bugzilla), + and the workaround is to reformulate the match:

ProxyPassMatch ^/(.*\.gif)$ http://backend.example.com:8000/$1 -- 2.47.3