summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-03-25 16:37:46 +0100
committerRobin Appelman <icewind@owncloud.com>2014-06-04 16:08:59 +0200
commitda889ff029446119cf6159e75c48ef83be7de7e8 (patch)
treeb88399936d4e4ec24145739db4cc9c1e3e09c833 /config
parentb5f0a179187bb3f10a939518c6eba72593c1f7a5 (diff)
downloadnextcloud-server-da889ff029446119cf6159e75c48ef83be7de7e8.tar.gz
nextcloud-server-da889ff029446119cf6159e75c48ef83be7de7e8.zip
Added experimental switch to count external storage data in quota
This includes all mountpoints except the Shared one in the used space calculation. Added unit tests for ext storage inclusion in quota calculation
Diffstat (limited to 'config')
-rwxr-xr-xconfig/config.sample.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 0a81543589b..4b1ab2fce5f 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -291,6 +291,9 @@ $CONFIG = array(
*/
'cache_path' => '',
+/* EXPERIMENTAL: option whether to include external storage in quota calculation, defaults to false */
+'quota_include_external_storage' => false,
+
/*
* specifies how often the filesystem is checked for changes made outside owncloud
* 0 -> never check the filesystem for outside changes, provides a performance increase when it's certain that no changes are made directly to the filesystem
@@ -301,5 +304,4 @@ $CONFIG = array(
/* If true, prevent owncloud from changing the cache due to changes in the filesystem for all storage */
'filesystem_cache_readonly' => false,
-
);