[Apache/SSL]request body exceeds maximum size (131072) for SSL bufferエラーの対処法

対処法

/etc/httpd/conf/httpd.conf
のグローバル設定情報の中で下記のように書いたら解決しました。
<Directory />
  # config against the error (request body exceeds maximum size (131072) for SSL buffer)
  # http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslrenegbuffersize
  # 10MB
 SSLRenegBufferSize 10000000
</Directory>
SSLRenegBufferSizeの設定は、<Directory>または.htaccessの中でのみ有効です。

<Location>の中に書いたらダメです。
<Virtualhost>の中に書いても無効です。

(このことに気づかずはまった)
参考
カテゴリ: