0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-12 09:55:09 +01:00
nextcloud-docker/22/fpm-alpine/config/apps.config.php

16 lines
377 B
PHP
Raw Normal View History

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