2017-03-16 135 views
1

我剛剛集成了Apache Httpd 2.4。 25與mod_security 2.9.1。現在我得到了這個錯誤信息:Apache-Error:[file「apache2_util.c」] [line 271] [level 3] [client%s] ModSecurity:%s%s [uri「%s」]%s

/* 
--ba380000-H-- 
Message: Error reading request body: Partial results are valid but processing is incomplete 
Apache-Error: [file "apache2_util.c"] [line 271] [level 3] [client %s] ModSecurity: %s%s [uri "%s"]%s 
Apache-Handler: jakarta-servlet 
Stopwatch: 1489655290393010 8470749 (- - -) 
Stopwatch2: 1489655290393010 8470749; combined=0, p1=0, p2=0, p3=0, p4=0, p5=0, sr=0, sw=0, l=0, gc=0 
Response-Body-Transformed: Dechunked 
Producer: ModSecurity for Apache/2.9.1 (http://www.modsecurity.org/). 
Server: Apache/2.4.25 (Win64) OpenSSL/1.0.2k mod_jk/1.2.40 mod_watch/4.3P mod_security2/2.9.1 
Engine-Mode: "ENABLED" 
--ba380000-Z-- 
*/ 

我不知道什麼是問題。請幫幫我。 謝謝。

回答

0

聽起來你正在發送大量請求體量和均創下了這個bug:https://github.com/SpiderLabs/ModSecurity/issues/918

你發出非常大的請求?您可以將SecRequestBodyLimit和SecRequestBodyNoFilesLimit增加到包含最大請求大小的大小嗎?雖然老實說,那些默認設置是相當大的(128Mb),所以除非你明確地設置了這些值,或者確實有很大的請求體尺寸,我不知道你是如何達到這個極限的。

+0

嗨BazzaDP,感謝您的迴應,我已經設置SecRequestBodyLimit 313107200 SecRequestBodyNoFilesLimit 33131072 –

+0

這導致它解決了這個問題?爲什麼這些價值?爲什麼不同的價值觀?這分別是300mb和32mb--這對於請求機構來說是巨大的價值! –

+0

BazzaDP,現在我想將此選項設置爲無限制。我怎樣才能做到這一點?刪除它是從配置? –

相關問題