Added Config Files

This commit is contained in:
2023-01-17 20:53:16 +01:00
parent 854115e510
commit 1a2d6aeb54
11 changed files with 2393 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
<?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,
),
),
);