mirror of
https://github.com/linuxserver/docker-nextcloud.git
synced 2026-02-19 23:03:50 +08:00
Fix config format
Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
parent
53f5177687
commit
95a5440b64
@ -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,
|
||||
],
|
||||
],
|
||||
];
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user