Skip to content

Commit 175d4c5

Browse files
committed
generate documentation from config.sample.php
1 parent 0727e26 commit 175d4c5

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

admin_manual/configuration_server/config_sample_php_parameters.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3726,6 +3726,36 @@ This is used to find external binaries like libreoffice, sendmail, ffmpeg and mo
37263726

37273727
Defaults to ``['/usr/local/sbin','/usr/local/bin','/usr/sbin','/usr/bin','/sbin','/bin','/opt/bin']``
37283728

3729+
files.chunked_upload.max_size
3730+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3731+
3732+
3733+
::
3734+
3735+
'files.chunked_upload.max_size' => 100 * 1024 * 1024,
3736+
3737+
The maximum chunk size to use for chunked uploads.
3738+
3739+
A bigger chunk size results in higher throughput, but above 100 MiB there are only diminishing returns,
3740+
while services like Cloudflare already limit to 100 MiB.
3741+
3742+
Defaults to 100 MiB.
3743+
3744+
files.chunked_upload.max_parallel_count
3745+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3746+
3747+
3748+
::
3749+
3750+
'files.chunked_upload.max_parallel_count' => 5,
3751+
3752+
The maximum number of chunks uploaded in parallel during chunked uploads.
3753+
3754+
A bigger count results in higher throughput, but will also consume more server workers,
3755+
while the improvements diminish.
3756+
3757+
Defaults to 5.
3758+
37293759
.. ALL_OTHER_SECTIONS_END
37303760
.. Generated content above. Don't change this.
37313761

0 commit comments

Comments
 (0)