From 04b2ead1e143664c1cf99e78daececba10143153 Mon Sep 17 00:00:00 2001 From: RealRancor Date: Wed, 7 Oct 2015 07:49:26 +0200 Subject: [PATCH] Document max_file_uploads of PHP. --- .../performance_tuning/webserver_tips.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/admin_manual/configuration_server/performance_tuning/webserver_tips.rst b/admin_manual/configuration_server/performance_tuning/webserver_tips.rst index deb3e065c..8a2bdbc71 100644 --- a/admin_manual/configuration_server/performance_tuning/webserver_tips.rst +++ b/admin_manual/configuration_server/performance_tuning/webserver_tips.rst @@ -12,6 +12,15 @@ on/off``. If it is on, then add this line to ``php.ini`` to turn it off:: safe_mode = Off +Raise max_file_uploads of PHP +----------------------------- + +The PHP setting ``max_file_uploads`` within the ``php.ini`` defaults to ``20`` +on most environments which allows that number of simultaneous uploads. +Currently the ownCloud sync client is doing ``3`` parallel uploads which means +that at least ``6`` clients can upload files simultaneously. Depending on your +server usage it is recommended to raise this number to a higher value. + Enable the SPDY / http_v2 protocol ----------------------------------