From 11cd131697123e47133eea23489bb2d03314bf0c Mon Sep 17 00:00:00 2001 From: j-ed Date: Sun, 3 Feb 2013 11:13:03 +0100 Subject: [PATCH] Update admin_manual/configuration_apps.rst applied recommended changes how the apps path should be set. --- admin_manual/configuration_apps.rst | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/admin_manual/configuration_apps.rst b/admin_manual/configuration_apps.rst index 244e7f119..2b6c9da3e 100644 --- a/admin_manual/configuration_apps.rst +++ b/admin_manual/configuration_apps.rst @@ -29,12 +29,17 @@ web root. The key ``writable`` indicates if a user can install apps in that folder. :: "apps_paths" => array ( - 0 => array ( - "path" => "/var/www/owncloud/apps", - "url" => "/apps", - "writable" => true, - ), - ), + 0 => array ( + "path" => OC::$SERVERROOT."/apps", + "url" => "/apps", + "writable" => true, + ), + 1 => array ( + "path" => OC::$SERVERROOT."/apps2", + "url" => "/apps2", + "writable" => false, + ), + ), Finally you can enable checks for malicious code fragments of 3rd-party apps by setting the ``appcodechecker`` parameter.