diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-06 15:31:49 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-06 15:31:49 +0200 |
commit | bb4246c9a8dc40d844ad94492cb40ece5bd35ef6 (patch) | |
tree | bd93f37351dabe35e9c8af603685782e9bc22b73 | |
parent | 932e64f77fd8de4380d6f2229390d82df5765eb6 (diff) | |
parent | a4ceb5fafe273d4902b0651eb72466c51d30350e (diff) | |
download | nextcloud-server-bb4246c9a8dc40d844ad94492cb40ece5bd35ef6.tar.gz nextcloud-server-bb4246c9a8dc40d844ad94492cb40ece5bd35ef6.zip |
Merge pull request #19207 from RealRancor/fix_mount.json_dir
Path to mount.json needs to be absolute in config.sample.php
-rw-r--r-- | config/config.sample.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 2a2bca708a8..432569f12a9 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1070,8 +1070,9 @@ $CONFIG = array( /** * Where ``mount.json`` file should be stored, defaults to ``data/mount.json`` + * in the ownCloud directory. */ -'mount_file' => 'data/mount.json', +'mount_file' => '/var/www/owncloud/data/mount.json', /** * When ``true``, prevent ownCloud from changing the cache due to changes in the |