From: Daniel Gruno
Date: Thu, 19 Jul 2012 15:46:30 +0000 (+0000)
Subject: forward(?)-port some changes that were made in 2.4 instead of trunk
X-Git-Tag: 2.5.0-alpha~6620
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=beb4b3913cb79311f43c00317188d7a574d6b875;p=thirdparty%2Fapache%2Fhttpd.git
forward(?)-port some changes that were made in 2.4 instead of trunk
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1363392 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/rewrite/flags.xml b/docs/manual/rewrite/flags.xml
index 3b565fd1fae..5975f8de667 100644
--- a/docs/manual/rewrite/flags.xml
+++ b/docs/manual/rewrite/flags.xml
@@ -489,6 +489,15 @@ and hostname part of the URL is either fixed, or does not allow the
client undue influence.
+
+Performance warning
+Using this flag triggers the use of mod_proxy, without handling of persistent connections. This
+means the performance of your proxy will be better if you set it up with ProxyPass or
+ProxyPassMatch
+This is because this flag triggers the use of the default worker, which does not handle connection pooling.
+Avoid using this flag and prefer those directives, whenever you can.
+
+
Note: mod_proxy must be enabled in order
to use this flag.