From: Nick Kew Date: Thu, 27 Aug 2009 16:28:06 +0000 (+0000) Subject: PR46665 workaround docs: remove ambiguity about how it will fail if an X-Git-Tag: 2.2.14~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72e1637fecc793924afa695425458b7421f505b5;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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