diff options
author | Brice Maron <brice@bmaron.net> | 2012-06-14 21:00:02 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-06-14 21:00:02 +0000 |
commit | 6da5a2fdd4e8a19ab993b4a1f7de7e45b8922a16 (patch) | |
tree | d98a0cf88baf7a1b2f5329090a60b575dcdf3e83 /config | |
parent | dd98afc56c4356a06fb5afef39da916a97bae90b (diff) | |
download | nextcloud-server-6da5a2fdd4e8a19ab993b4a1f7de7e45b8922a16.tar.gz nextcloud-server-6da5a2fdd4e8a19ab993b4a1f7de7e45b8922a16.zip |
Add possibility to choose the installation folder
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index bc66e9ebc05..afc04f8ec1b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -33,17 +33,17 @@ $CONFIG = array( * If the apps dir is not writable, you can't download&install extra apps * in the admin apps menu. */ -"writable_appsdir" => true, // "datadirectory" => "", "apps_paths" => array( /* Set an array of path for your apps directories - key 'path' is for the fs path an the key url is for the http path to your - applications paths + key 'path' is for the fs path an the key 'url' is for the http path to your + applications paths. 'writable' indicate if the user can install apps in this folder. */ - array( - 'path'=> '/var/www/owncloud/apps', - 'url' => '/apps', + array( + 'path'=> '/var/www/owncloud/apps', + 'url' => '/apps', + 'writable' => true, ), ), ); |