Why is max_chunk_size set to 10 MB by default? That's pretty low.
What would you think about upping it to something like 1 GB?
Code reference:
|
$maxChunkSize = (int)\OC::$server->getConfig()->getAppValue('files', 'max_chunk_size', 10 * 1024 * 1024); |
The weird thing is that the VM install script overrides this to 100 MB. Why is it different from the default?
https://github.com/nextcloud/vm/blob/c4b764acbd4fb3c66acb24cddfe21774a1363126/nextcloud_install_production.sh#L540
Why is
max_chunk_sizeset to10 MBby default? That's pretty low.What would you think about upping it to something like
1 GB?Code reference:
server/apps/files/lib/App.php
Line 57 in 0447b53
The weird thing is that the VM install script overrides this to
100 MB. Why is it different from the default?https://github.com/nextcloud/vm/blob/c4b764acbd4fb3c66acb24cddfe21774a1363126/nextcloud_install_production.sh#L540