mirror of
https://github.com/nextcloud/server.git
synced 2024-12-27 15:38:19 +00:00
1f7e2ba599
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
16 lines
374 B
PHP
16 lines
374 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
$CONFIG = [
|
|
'memcache.local' => '\\OC\\Memcache\\Redis',
|
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
'redis' => [
|
|
'host' => 'localhost',
|
|
'port' => 6379,
|
|
'timeout' => 0,
|
|
],
|
|
];
|