From 810dec4a966abbf9dd0d8cd91fa1bdd4dab21303 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 14 Mar 2024 12:22:54 +0100 Subject: [PATCH] nextcloud - update apps_paths to include absolute path Signed-off-by: Simon L --- Containers/nextcloud/config/apps.config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containers/nextcloud/config/apps.config.php b/Containers/nextcloud/config/apps.config.php index 32283588..cff5dadd 100644 --- a/Containers/nextcloud/config/apps.config.php +++ b/Containers/nextcloud/config/apps.config.php @@ -2,12 +2,12 @@ $CONFIG = array ( 'apps_paths' => array ( 0 => array ( - 'path' => OC::$SERVERROOT.'/apps', + 'path' => '/var/www/html/apps', 'url' => '/apps', 'writable' => false, ), 1 => array ( - 'path' => OC::$SERVERROOT.'/custom_apps', + 'path' => '/var/www/html/custom_apps', 'url' => '/custom_apps', 'writable' => true, ),