diff --git a/admin_manual/configuration/big_file_upload_configuration.rst b/admin_manual/configuration/big_file_upload_configuration.rst index bb9ae9917..8544bda72 100644 --- a/admin_manual/configuration/big_file_upload_configuration.rst +++ b/admin_manual/configuration/big_file_upload_configuration.rst @@ -38,6 +38,28 @@ increase the timeout values, which are in seconds:: php_value max_input_time 3600 php_value max_execution_time 3600 +There are also several other configuration option in your webserver config which +could prevent the upload of larger files. Please see the manual of your webserver +how to configure those values correctly: + +Apache +~~~~~~ +`LimitRequestBody `_ +`SSLRenegBufferSize `_ + +Apache with mod_fcgid +~~~~~~~~~~~~~~~~~~~~~ +`FcgidMaxRequestLen `_ + +NginX +~~~~~ +`client_max_body_size `_ + +IIS +~~~ +`maxAllowedContentLength `_ + + Configuring PHP ---------------