summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel <mail@danielkesselberg.de>2021-10-13 17:54:51 +0200
committerGitHub <noreply@github.com>2021-10-13 17:54:51 +0200
commitc11812a6adc1370d4333e7fc993787d48d343d4e (patch)
tree6d6a981682b11ba4a60abb9118480b2c05a5570f
parent581862b51b8a3322a518bdd216e7fcd6f60f4bfc (diff)
parent110ddb9183bc3003f7911c065857c168d4f1ea37 (diff)
downloadnextcloud-server-c11812a6adc1370d4333e7fc993787d48d343d4e.tar.gz
nextcloud-server-c11812a6adc1370d4333e7fc993787d48d343d4e.zip
Merge pull request #29136 from nextcloud/bug/noid/documentation-background-scan-files
Add documentation for files_no_background_scan
-rw-r--r--config/config.sample.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 845db00ac12..b7e5772b91a 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1965,4 +1965,15 @@ $CONFIG = [
*/
'login_form_autocomplete' => true,
+
+/**
+ * Disable background scanning of files
+ *
+ * By default, a background job runs every 10 minutes and execute a background
+ * scan to sync filesystem and database. Only users with unscanned files
+ * (size=0 in filecache) are included. Maximum 500 users per job.
+ *
+ * Defaults to ``true``
+ */
+'files_no_background_scan' => false,
];