summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-03-28 12:08:38 +0100
committerVincent Petry <pvince81@owncloud.com>2014-03-28 12:08:38 +0100
commit040f430f0c2c3f1de1d2e24b183c1634c3067adb (patch)
tree09a5793725aa14c0675c51d2d2d767066b5e2672 /config
parent1e9c5be33d5a7a447168c2e293191e49f8231d21 (diff)
parente76be308eb8e969b1a4b74d97c2ccb320a986937 (diff)
downloadnextcloud-server-040f430f0c2c3f1de1d2e24b183c1634c3067adb.tar.gz
nextcloud-server-040f430f0c2c3f1de1d2e24b183c1634c3067adb.zip
Merge pull request #7829 from owncloud/cachefolderlocation
Cache folder is now configurable
Diffstat (limited to 'config')
-rwxr-xr-xconfig/config.sample.php13
1 files changed, 11 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 891c2eb5fa1..140b75706ea 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -276,6 +276,15 @@ $CONFIG = array(
/* all css and js files will be served by the web server statically in one js file and ons css file*/
'asset-pipeline.enabled' => false,
- /* where mount.json file should be stored, defaults to data/mount.json */
- 'mount_file' => '',
+/* where mount.json file should be stored, defaults to data/mount.json */
+'mount_file' => '',
+
+/*
+ * Location of the cache folder, defaults to "data/$user/cache" where "$user" is the current user.
+ *
+ * When specified, the format will change to "$cache_path/$user" where "$cache_path" is the configured
+ * cache directory and "$user" is the user.
+ *
+ */
+'cache_path' => ''
);