mirror of
https://github.com/linuxserver/docker-nextcloud.git
synced 2026-02-19 23:03:50 +08:00
19 lines
410 B
PHP
19 lines
410 B
PHP
<?php
|
|
$CONFIG = [
|
|
'memcache.local' => '\\OC\\Memcache\\APCu',
|
|
'memcache.distributed' => '\\OC\\Memcache\\Memcached',
|
|
'datadirectory' => '/data',
|
|
'apps_paths' => [
|
|
0 => [
|
|
'path' => '/app/www/public/apps',
|
|
'url' => '/apps',
|
|
'writable' => false,
|
|
],
|
|
1 => [
|
|
'path' => '/app/www/public/custom_apps',
|
|
'url' => '/custom_apps',
|
|
'writable' => true,
|
|
],
|
|
],
|
|
];
|