nextcloud: add apps_array and enable apcu by default

This commit is contained in:
Wonderfall 2016-10-12 10:14:48 +02:00
parent 1eade44367
commit 4a1add5c11

View File

@ -14,6 +14,21 @@ cat > $CONFIGFILE <<EOF;
\$CONFIG = array ( \$CONFIG = array (
'datadirectory' => '/data', 'datadirectory' => '/data',
"apps_paths" => array (
0 => array (
"path" => "/nextcloud/apps",
"url" => "/apps",
"writable" => false,
),
1 => array (
"path" => "/apps2",
"url" => "/apps2",
"writable" => true,
),
),
'memcache.local' => '\OC\Memcache\APCu',
'instanceid' => '$instanceid', 'instanceid' => '$instanceid',
); );
?> ?>