all-in-one/Containers/nextcloud/config/apps.config.php

17 lines
467 B
PHP
Raw Normal View History

2021-11-30 11:20:42 +01:00
<?php
$CONFIG = array (
'apps_paths' => array (
0 => array (
'path' => '/var/www/html/apps',
2021-11-30 11:20:42 +01:00
'url' => '/apps',
'writable' => false,
),
1 => array (
'path' => '/var/www/html/custom_apps',
2021-11-30 11:20:42 +01:00
'url' => '/custom_apps',
'writable' => true,
),
),
'appsallowlist' => getenv('APPS_ALLOWLIST') ? explode(" ", getenv('APPS_ALLOWLIST')) : false,
2021-11-30 11:20:42 +01:00
);