11 lines
226 B
PHP
11 lines
226 B
PHP
|
<?php
|
||
|
$CONFIG = array (
|
||
|
'memcache.local' => '\\OC\\Memcache\\Redis',
|
||
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
||
|
'filelocking.enabled' => 'true',
|
||
|
'redis' => array(
|
||
|
'host' => 'redis',
|
||
|
'port' => 6379,
|
||
|
),
|
||
|
);
|