Skip to content

Commit

Permalink
generate documentation from config.sample.php
Browse files Browse the repository at this point in the history
  • Loading branch information
nextcloud-bot committed Oct 22, 2024
1 parent 0727e26 commit 175d4c5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions admin_manual/configuration_server/config_sample_php_parameters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 175d4c5

Please sign in to comment.