diff options
Diffstat (limited to 'tests/redis.config.php')
-rw-r--r-- | tests/redis.config.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/redis.config.php b/tests/redis.config.php index 9d3f1eca63e..dd135345abd 100644 --- a/tests/redis.config.php +++ b/tests/redis.config.php @@ -1,11 +1,15 @@ <?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' => 'cache', + 'host' => 'localhost', 'port' => 6379, 'timeout' => 0, ], |