0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-26 21:20:53 +02:00

Runs update.sh

This commit is contained in:
GitHub Workflow 2021-01-14 16:51:39 +00:00
parent fa4a8a857b
commit aa48d5145f
24 changed files with 240 additions and 240 deletions

View file

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