From: Graham Leggett
Date: Sat, 27 Apr 2013 18:31:19 +0000 (+0000)
Subject: Correct the ProxyIOBufferSize docs to match the code. Add a note about the AJP
X-Git-Tag: 2.2.25~77
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=590e9b2c2aaab12a8e51e165cb35d240dc48ec12;p=thirdparty%2Fapache%2Fhttpd.git
Correct the ProxyIOBufferSize docs to match the code. Add a note about the AJP
behaviour as per http://www.mail-archive.com/dev@httpd.apache.org/msg41843.html.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1476655 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml
index 6969dfcd021..eca80f7de0f 100644
--- a/docs/manual/mod/mod_proxy.xml
+++ b/docs/manual/mod/mod_proxy.xml
@@ -1374,7 +1374,11 @@ connections
The ProxyIOBufferSize directive adjusts the size
of the internal buffer, which is used as a scratchpad for the data between
- input and output. The size must be less or equal 8192
.
+ input and output. The size must be at least 8192
.
+
+ When the mod_proxy_ajp module is used, this value is
+ aligned to a 1024 byte boundary, and values larger than 65536 are set to
+ 65536 in accordance with the AJP protocol.
In almost every case there's no reason to change that value.