From 95a5440b6469cb02ca61c4870204d4fd161f3cf8 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Wed, 7 Jun 2023 01:00:34 -0500 Subject: [PATCH] Fix config format Signed-off-by: Eric Nemchik --- root/defaults/config.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/root/defaults/config.php b/root/defaults/config.php index db32f41..45ed83c 100644 --- a/root/defaults/config.php +++ b/root/defaults/config.php @@ -1,18 +1,21 @@ '\\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, - ], - ], -]; + ), + ), +);