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
path: root/config
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2012-06-08 00:56:21 +0400
committerBrice Maron <brice@bmaron.net>2012-06-08 00:56:21 +0400
commitdd98afc56c4356a06fb5afef39da916a97bae90b (patch)
tree5f2e19c5ea638cd05d105cf89d640b2965e14938 /config
parent9ec68c819bf409905e3e3ab17cb4b2dd925cbde7 (diff)
Add doc about multi app dir in sample config
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 7ab327e2bce..bc66e9ebc05 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -34,6 +34,17 @@ $CONFIG = array(
* in the admin apps menu.
*/
"writable_appsdir" => true,
-// "datadirectory" => ""
+// "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
+*/
+ array(
+ 'path'=> '/var/www/owncloud/apps',
+ 'url' => '/apps',
+ ),
+ ),
);
?>