Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2019-08-12 13:50:19 +0300
committerChristian Kamm <mail@ckamm.de>2019-08-13 14:24:16 +0300
commit643f9a6fd6b625a13af2c6db1f18b1ceab3d63c2 (patch)
tree3675aa1517854228c879d44c239edc98d8d95be7 /docs
parent98c04e1b92ddc00881fa0d06c9dad24e6285571f (diff)
Doc: Add some missing config file options
For owncloud/docs#1365
Diffstat (limited to 'docs')
-rw-r--r--docs/modules/ROOT/pages/advanced_usage/configuration_file.adoc25
1 files changed, 22 insertions, 3 deletions
diff --git a/docs/modules/ROOT/pages/advanced_usage/configuration_file.adoc b/docs/modules/ROOT/pages/advanced_usage/configuration_file.adoc
index 1ae719766..314c52d29 100644
--- a/docs/modules/ROOT/pages/advanced_usage/configuration_file.adoc
+++ b/docs/modules/ROOT/pages/advanced_usage/configuration_file.adoc
@@ -41,14 +41,33 @@ Some interesting values that can be set on the configuration file are:
| Variable | Default | Meaning
| `chunkSize`
-| `5242880`
-| Specifies the chunk size of uploaded files in bytes.
+| `10000000` (or 10 MB)
+| Specifies the initial chunk size of uploaded files in bytes.
+The client will dynamically adjust this size within the maximum and minimum bounds (see below).
+
+| `maxChunkSize`
+| `100000000` (or 100 MB)
+| Specifies the maximum chunk size of uploaded files in bytes.
+
+| `minChunkSize`
+| `1000000` (or 1 MB)
+| Specifies the minimum chunk size of uploaded files in bytes.
+
+| `targetChunkUploadDuration`
+| `60000` (1 minute)
+| Target duration in milliseconds for chunk uploads.
+The client adjusts the chunk size until each chunk upload takes approximately this long.
+Set to 0 to disable dynamic chunk sizing.
| `promptDeleteAllFiles`
| `true`
| If a UI prompt should ask for confirmation if it was detected that all files and folders were deleted.
-| `timeout`
+| `crashReporter`
+| `true`
+| Whether to show the crash reporter when a crash occurs.
+
+| `timeout`
| `300`
| The timeout for network connections in seconds.