diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2021-10-08 11:41:19 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2021-10-08 11:41:19 +0200 |
commit | 110ddb9183bc3003f7911c065857c168d4f1ea37 (patch) | |
tree | c8ae662cf8281c944bfc7d25dcef3e2e6a27c429 /config | |
parent | 9187e986e10a0e189f825cd462eb9e68bd732981 (diff) | |
download | nextcloud-server-110ddb9183bc3003f7911c065857c168d4f1ea37.tar.gz nextcloud-server-110ddb9183bc3003f7911c065857c168d4f1ea37.zip |
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.php | 11 |
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, ]; |