diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-07-29 12:01:12 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-07-29 12:01:12 +0200 |
commit | 7c9405a9214dc159eab764bc81d0202593eaac06 (patch) | |
tree | 1b59492302813d8e33b8ae8bcd6186afb26e8e37 /config | |
parent | 6ada1e327661b7ee2a4cf2d49aa6843352d1c31d (diff) | |
download | nextcloud-server-7c9405a9214dc159eab764bc81d0202593eaac06.tar.gz nextcloud-server-7c9405a9214dc159eab764bc81d0202593eaac06.zip |
Disable filesystem_check_changes by default
This will prevent detecting remote changes done in the data folder /
root storage by default. In the rare cases where the data folder is
shared with other apps/users outside ownCloud and change detection is
needed, the admin will have to set the option explicitly from now on.
Note that this doesn't affect external storages which have their own
setting in the mount options.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index deecbec1ecb..3b5632087f6 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -975,7 +975,7 @@ $CONFIG = array( * 2 -> Check every time the filesystem is used, causes a performance hit when * using external storages, not recommended for regular use. */ -'filesystem_check_changes' => 1, +'filesystem_check_changes' => 0, /** * All css and js files will be served by the web server statically in one js |