]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1909067 from trunk:
authorRuediger Pluem <rpluem@apache.org>
Wed, 12 Apr 2023 12:24:18 +0000 (12:24 +0000)
committerRuediger Pluem <rpluem@apache.org>
Wed, 12 Apr 2023 12:24:18 +0000 (12:24 +0000)
* Clarify performance topic

Reviewed by: ruediger

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1909087 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/rewrite/flags.xml

index 1229d1ab95825da2fab69bef1434d8203bc2b56d..2cceb087e8a9f426147f764c4cbfdae8c0b7f983 100644 (file)
@@ -601,11 +601,17 @@ client undue influence.</p>
 
 <note type="warning">
 <title>Performance warning</title>
-<p>Using this flag triggers the use of <module>mod_proxy</module>, without handling of persistent connections. This
-means the performance of your proxy will be better if you set it up with <directive module="mod_proxy">ProxyPass</directive> or
-<directive module="mod_proxy">ProxyPassMatch</directive></p>
-<p>This is because this flag triggers the use of the default worker, which does not handle connection pooling/reuse.</p>
-<p>Avoid using this flag and prefer those directives, whenever you can.</p>
+<p>Using this flag triggers the use of <module>mod_proxy</module>, without
+handling of persistent connections as the default worker is used in this case,
+which does not handle connection pooling/reuse.</p>
+<p>In order to use persistent connections you need to setup a
+<directive module="mod_proxy">Proxy</directive> block at least for the scheme
+and host part of the target URL containing a
+<directive module="mod_proxy">ProxySet</directive> directive where you e.g. set
+a timeout.</p>
+<p>If you set it up with <directive module="mod_proxy">ProxyPass</directive> or
+<directive module="mod_proxy">ProxyPassMatch</directive> persistent connections
+will be used automatically.</p>
 </note>
 
 <p>Note: <module>mod_proxy</module> must be enabled in order