aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorPablo Zmdl <pablo@nextcloud.com>2024-09-27 13:59:09 +0200
committerDaniel <mail@danielkesselberg.de>2024-10-17 22:27:10 +0200
commit280adb3e9430138dc5ff8c990f8b5a1448ef5d88 (patch)
tree8fb31f6e9e0c75a18ef8bdfe02c6e6d8c38c9045 /config
parent40fd76f69e601ab5579e8ce9b81318d3924dd463 (diff)
downloadnextcloud-server-280adb3e9430138dc5ff8c990f8b5a1448ef5d88.tar.gz
nextcloud-server-280adb3e9430138dc5ff8c990f8b5a1448ef5d88.zip
feat: configurable request timeout for carddav sync
Big federated setups may need a longer timeout, which they now can configure. Signed-off-by: Pablo Zmdl <pablo@nextcloud.com> Co-authored-by: Josh <josh.t.richards@gmail.com>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 21a77a8cbf6..709c1fb73c6 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -341,6 +341,13 @@ $CONFIG = [
'davstorage.request_timeout' => 30,
/**
+ * The timeout in seconds for synchronizing address books, e.g. federated system address books (as run by `occ federation:sync-addressbooks`).
+ *
+ * Defaults to ``30`` seconds
+ */
+'carddav_sync_request_timeout' => 30,
+
+/**
* `true` enabled a relaxed session timeout, where the session timeout would no longer be
* handled by Nextcloud but by either the PHP garbage collection or the expiration of
* potential other session backends like redis.