From 3f115941abba476ce1093c0e418e148d6f0f11dc Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Mon, 6 Jul 2020 10:25:35 +0200 Subject: [PATCH] custom_apps path in default config --- templates/config.php.j2 | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/templates/config.php.j2 b/templates/config.php.j2 index 5bf4417..9cba06a 100644 --- a/templates/config.php.j2 +++ b/templates/config.php.j2 @@ -11,10 +11,18 @@ $CONFIG = array( 'loglevel' => 2, 'logtimezone' => '{{timezone}}', 'appstoreenabled' => true, -'apps_paths' => array( - array( - 'path'=> '{{nextcloud_directory}}/apps', +'apps_paths' => +array ( + 0 => + array ( + 'path' => '/var/www/nextcloud/apps', 'url' => '/apps', + 'writable' => false, + ), + 1 => + array ( + 'path' => '/var/www/nextcloud/custom_apps', + 'url' => '/custom_apps', 'writable' => true, ), ),