Files
OSIT-AE-Docker-Env/conf/nextcloud/config/apps.config.php
2023-02-22 16:40:16 -05:00

16 lines
321 B
PHP

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