diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-03-28 12:08:38 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-03-28 12:08:38 +0100 |
commit | 040f430f0c2c3f1de1d2e24b183c1634c3067adb (patch) | |
tree | 09a5793725aa14c0675c51d2d2d767066b5e2672 /config | |
parent | 1e9c5be33d5a7a447168c2e293191e49f8231d21 (diff) | |
parent | e76be308eb8e969b1a4b74d97c2ccb320a986937 (diff) | |
download | nextcloud-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-x | config/config.sample.php | 13 |
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' => '' ); |