From ec73aa7deb347b914c2b2091d657633b6f30d778 Mon Sep 17 00:00:00 2001 From: j-ed Date: Sun, 3 Feb 2013 13:10:12 +0100 Subject: [PATCH] Update admin_manual/configuration_apps.rst changed writable status and added hint to separate shipped and downloaded apps. --- admin_manual/configuration_apps.rst | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/admin_manual/configuration_apps.rst b/admin_manual/configuration_apps.rst index 2b6c9da3e..1d7bffc30 100644 --- a/admin_manual/configuration_apps.rst +++ b/admin_manual/configuration_apps.rst @@ -27,17 +27,22 @@ for available apps and/or where user specific apps should be installed.The key ``url`` defines the http web path to that folder, starting at the ownCloud web root. The key ``writable`` indicates if a user can install apps in that folder. + +**Hint:** +If you want to make sure that the default ``/apps`` folder only contains apps +shipped with ownCloud, you should follow the example and set-up a ``/apps2`` +folder which will be used to store all apps downloaded by users. :: "apps_paths" => array ( 0 => array ( "path" => OC::$SERVERROOT."/apps", "url" => "/apps", - "writable" => true, + "writable" => false, ), 1 => array ( "path" => OC::$SERVERROOT."/apps2", "url" => "/apps2", - "writable" => false, + "writable" => true, ), ),