diff options
author | Pierre Ozoux <pierre@ozoux.net> | 2022-04-26 15:01:19 +0200 |
---|---|---|
committer | Pierre Ozoux <pierre@ozoux.net> | 2022-04-27 10:37:46 +0200 |
commit | 1de9c66a9db711ffd4f5f845d7afd63131caceef (patch) | |
tree | d57b9618456b8622318f05cf916da44b33330d13 /config | |
parent | b1cb2e53404575a4859d4f97bdc97a978972897d (diff) | |
download | nextcloud-server-1de9c66a9db711ffd4f5f845d7afd63131caceef.tar.gz nextcloud-server-1de9c66a9db711ffd4f5f845d7afd63131caceef.zip |
Adds uploadPartSize to config sample.
closes https://github.com/nextcloud/server/issues/24390
Signed-off-by: Pierre Ozoux <pierre@ozoux.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 54d3d46070a..d4facbfeaff 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1467,6 +1467,8 @@ $CONFIG = [ 'region' => 'RegionOne', // The Identity / Keystone endpoint 'url' => 'http://8.21.28.222:5000/v2.0', + // uploadPartSize: size of the uploaded chunks, defaults to 524288000 + 'uploadPartSize' => 524288000, // required on dev-/trystack 'tenantName' => 'facebook100000123456789', // dev-/trystack uses swift by default, the lib defaults to 'cloudFiles' |