From 175d4c5dfeafdc92d1bcd9f1e021fa99cc8b9a8e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 22 Oct 2024 03:01:48 +0000 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 0d6488dd9c4..95a7bd50e57 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -3726,6 +3726,36 @@ This is used to find external binaries like libreoffice, sendmail, ffmpeg and mo Defaults to ``['/usr/local/sbin','/usr/local/bin','/usr/sbin','/usr/bin','/sbin','/bin','/opt/bin']`` +files.chunked_upload.max_size +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + +:: + + 'files.chunked_upload.max_size' => 100 * 1024 * 1024, + +The maximum chunk size to use for chunked uploads. + +A bigger chunk size results in higher throughput, but above 100 MiB there are only diminishing returns, +while services like Cloudflare already limit to 100 MiB. + +Defaults to 100 MiB. + +files.chunked_upload.max_parallel_count +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + + +:: + + 'files.chunked_upload.max_parallel_count' => 5, + +The maximum number of chunks uploaded in parallel during chunked uploads. + +A bigger count results in higher throughput, but will also consume more server workers, +while the improvements diminish. + +Defaults to 5. + .. ALL_OTHER_SECTIONS_END .. Generated content above. Don't change this.