]> 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:15:29 +0000 (19:15 +0000)
committerEric Covener <covener@apache.org>
Mon, 6 Jan 2025 19:15:29 +0000 (19:15 +0000)
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

docs/manual/mod/core.xml

index 59945a2600cdd8b7dcdbfc10a0a43253e9732445..a1726a57aa1f7fe845ef9834ab1825fef672173d 100644 (file)
@@ -3077,7 +3077,7 @@ LimitRequestLine 4094
 
     <highlight language="config">
 # Limit of 1 MiB
-LimitXMLRequestBody 1073741824
+LimitXMLRequestBody 1048576
     </highlight>
 
 </usage>