0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-14 10:35:07 +01:00
nextcloud-docker/.config/apps.config.php
Juliane Holzt 86efb866d6
Fix app-directory order so that shipped apps can be updated
The configuration did not allow the update of applications which were
shipped with nextcloud. While the updates are downloaded and put into
the custom_apps folder, Nextcloud will continue to use the old app
because it loads it from the first app folder it finds it in.
2018-04-05 00:19:38 +02:00

15 lines
377 B
PHP

<?php
$CONFIG = array (
"apps_paths" => array (
0 => array (
"path" => OC::$SERVERROOT."/custom_apps",
"url" => "/custom_apps",
"writable" => true,
),
1 => array (
"path" => OC::$SERVERROOT."/apps",
"url" => "/apps",
"writable" => false,
),
),
);