docker-nextcloud/21.0/apache/config/apps.config.php

16 lines
377 B
PHP
Raw Normal View History

2020-12-12 02:13:25 +01:00
<?php
$CONFIG = array (
2021-01-14 17:51:39 +01:00
'apps_paths' => array (
2020-12-12 02:13:25 +01:00
0 => array (
2021-01-14 17:51:39 +01:00
'path' => OC::$SERVERROOT.'/apps',
'url' => '/apps',
'writable' => false,
2020-12-12 02:13:25 +01:00
),
1 => array (
2021-01-14 17:51:39 +01:00
'path' => OC::$SERVERROOT.'/custom_apps',
'url' => '/custom_apps',
'writable' => true,
2020-12-12 02:13:25 +01:00
),
),
);