summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorringmaster <epithet@gmail.com>2014-05-27 16:01:16 -0400
committerringmaster <epithet@gmail.com>2014-05-27 16:01:16 -0400
commit26d169b27c43d06db1158990e33939b85d14a60d (patch)
treeaeb623b8bbd8f73043d2e691d4235c428bce9b71 /config
parent3b287f8274ef263d3144410bb6e3bf1a966f9d6d (diff)
downloadnextcloud-server-26d169b27c43d06db1158990e33939b85d14a60d.tar.gz
nextcloud-server-26d169b27c43d06db1158990e33939b85d14a60d.zip
Use 'filesystem_check_enable' as a config option.
Diffstat (limited to 'config')
-rwxr-xr-xconfig/config.sample.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 80694837edc..8fb782e7cf4 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -291,6 +291,9 @@ $CONFIG = array(
* 1 -> check each file or folder at most once per request, recomended for general use if outside changes might happen
* 2 -> check every time the filesystem is used, causes a performance hit when using external storages, not recomended for regular use
*/
-'filesystem_check_changes' => 1
+'filesystem_check_changes' => 1,
+
+/* specifies whether changes in the filesystem outside of owncloud affect cached data about those files */
+'filesystem_check_enable' => 1,
);