From e81ae007719ade9edb0d923a969c8a99b1585931 Mon Sep 17 00:00:00 2001 From: RealRancor Date: Wed, 18 Feb 2015 13:05:31 +0100 Subject: [PATCH] Add webserver config options which can prevent the upload of large files --- .../big_file_upload_configuration.rst | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) 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 ---------------