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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2021-10-08 12:41:19 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-10-13 18:57:48 +0300
commit2290dcb3a4a3306fa387e9f4a9d516d17cb59a82 (patch)
treee126093d3884345b9bb502965a04ef8dbbdfd067 /config
parent31cdcf6f8c172481e872e7e48e7b84754305a2e7 (diff)
Add documentation for files_no_background_scan
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'config')
-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 6fea4659c2b..ebee3fc210d 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1948,4 +1948,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,
];