1
0
mirror of https://github.com/nextcloud/docker.git synced 2024-06-30 21:20:55 +02:00
docker-nextcloud/23/fpm/config/apps.config.php

16 lines
377 B
PHP
Raw Normal View History

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