Fix config format

Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
Eric Nemchik 2023-06-07 01:00:34 -05:00
parent 53f5177687
commit 95a5440b64
No known key found for this signature in database

View File

@ -1,18 +1,21 @@
<?php
$CONFIG = [
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Memcached',
'datadirectory' => '/data',
'apps_paths' => [
0 => [
'apps_paths' =>
array (
0 =>
array (
'path' => '/app/www/public/apps',
'url' => '/apps',
'writable' => false,
],
1 => [
),
1 =>
array (
'path' => '/app/www/public/custom_apps',
'url' => '/custom_apps',
'writable' => true,
],
],
];
),
),
);