Merge pull request #4386 from nextcloud/enh/noid/absolut-apps-path

nextcloud - update apps_paths to include absolute path
This commit is contained in:
Simon L 2024-03-21 09:15:16 +01:00 committed by GitHub
commit 051871f67a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,
),