From dd98afc56c4356a06fb5afef39da916a97bae90b Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Thu, 7 Jun 2012 20:56:21 +0000 Subject: [PATCH] Add doc about multi app dir in sample config --- config/config.sample.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 7ab327e2bc..bc66e9ebc0 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', + ), + ), ); ?>