]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix value inconsistency in LimitXMLRequestBody example
authorEric Covener <covener@apache.org>
Mon, 6 Jan 2025 19:16:37 +0000 (19:16 +0000)
committerEric Covener <covener@apache.org>
Mon, 6 Jan 2025 19:16:37 +0000 (19:16 +0000)
value of 1 MiB = 1048576

Submitted by: Chenjp <ch_jp@msn.com>

backport from 1922928.

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

docs/manual/mod/core.xml

index 2ea71469dc1218f21f55d8e8efb5c9b6d820df1a..0c5a4d49065009fb173dead83851d2b37ceda790 100644 (file)
@@ -3047,7 +3047,7 @@ LimitRequestLine 4094
 
     <highlight language="config">
 # Limit of 1 MiB
-LimitXMLRequestBody 1073741824
+LimitXMLRequestBody 1048576
     </highlight>
 
 </usage>