Apache's limit to POST request size

后端 未结 1 1900
既然无缘
既然无缘 2020-12-10 04:08

Is there any limit of the POST request size in apache? What is the default value of this limit and is there any way to increase it? If it matters, Rails

相关标签:
1条回答
  • 2020-12-10 04:49

    The limit in Apache is set via the LimitRequestBody directive and defaults to 0:

    This directive specifies the number of bytes from 0 (meaning unlimited) to 2147483647 (2GB) that are allowed in a request body.

    Take a look at the full description of Apache's LimitRequestBody directive.

    Besides that Rails may impose a limit itself (cant't tell though b/c I've never programmed in Ruby).

    0 讨论(0)
提交回复
热议问题