diff options
author | Eric Covener <covener@apache.org> | 2025-01-06 20:15:29 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2025-01-06 20:15:29 +0100 |
commit | 7b36fce79781eb2d22a90ff6c1bf30edc3d6546a (patch) | |
tree | 9b5c351ef36e7931d91b37be99163ac4038e4714 | |
parent | Happy New Year 2025 (diff) | |
download | apache2-7b36fce79781eb2d22a90ff6c1bf30edc3d6546a.tar.xz apache2-7b36fce79781eb2d22a90ff6c1bf30edc3d6546a.zip |
fix value inconsistency in LimitXMLRequestBody example
value of 1 MiB = 1048576
Submitted by: Chenjp <ch_jp@msn.com>
Github: closes #506
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1922928 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/mod/core.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 59945a2600..a1726a57aa 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -3077,7 +3077,7 @@ LimitRequestLine 4094 <highlight language="config"> # Limit of 1 MiB -LimitXMLRequestBody 1073741824 +LimitXMLRequestBody 1048576 </highlight> </usage> |