mirror of
https://github.com/nextcloud/docker.git
synced 2025-01-20 12:53:54 +01:00
12 lines
228 B
PHP
12 lines
228 B
PHP
<?
|
|
$CONFIG = array (
|
|
'memcache.local' => '\\OC\\Memcache\\APCu',
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
'filelocking.enabled' => 'true',
|
|
'redis' =>
|
|
array (
|
|
'host' => 'redis',
|
|
'port' => 6379,
|
|
),
|
|
);
|
|
?>
|