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 application is started on this server using passenger.
Is there any limit of the POST request size in apache? What is the
Share
The limit in Apache is set via the
LimitRequestBodydirective and defaults to0:Take a look at the full description of Apache’s LimitRequestBody directive.
Besides that
Railsmay impose a limit itself (cant’t tell though b/c I’ve never programmed in Ruby).