mirror of
https://github.com/nextcloud/docker.git
synced 2025-01-20 04:43:53 +01:00
e2dc98dea4
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
15 lines
377 B
PHP
15 lines
377 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,
|
|
),
|
|
),
|
|
);
|