Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2012-06-15 01:00:02 +0400
committerBrice Maron <brice@bmaron.net>2012-06-15 01:00:02 +0400
commit6da5a2fdd4e8a19ab993b4a1f7de7e45b8922a16 (patch)
treed98a0cf88baf7a1b2f5329090a60b575dcdf3e83 /config/config.sample.php
parentdd98afc56c4356a06fb5afef39da916a97bae90b (diff)
Add possibility to choose the installation folder
Diffstat (limited to 'config/config.sample.php')
-rw-r--r--config/config.sample.php12
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,
),
),
);