change the default value for TUS

This commit is contained in:
Michael Barz
2023-09-12 16:35:41 +02:00
parent f6593411f7
commit 4b741804b9
2 changed files with 6 additions and 1 deletions
@@ -0,0 +1,5 @@
Change: Change the default TUS chunk size
We changed the default TUS chunk size from 100MB to 10MB. You can still use the old value by configuring it in your deployment.
https://github.com/owncloud/ocis/pull/7273
@@ -83,7 +83,7 @@ func DefaultConfig() *config.Config {
EnableFavorites: false,
EnableProjectSpaces: true,
EnableShareJail: true,
UploadMaxChunkSize: 1e+8,
UploadMaxChunkSize: 1e+7,
UploadHTTPMethodOverride: "",
DefaultUploadProtocol: "tus",
EnableResharing: true,