From 16d28f19e078ef0edceb9efa8e171882016ea8e8 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 14 Jan 2019 21:59:16 +0100 Subject: [PATCH] Change Redis example to hostname Signed-off-by: Morris Jobke --- admin_manual/configuration_server/caching_configuration.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin_manual/configuration_server/caching_configuration.rst b/admin_manual/configuration_server/caching_configuration.rst index adcadb2bc..51f0bce35 100644 --- a/admin_manual/configuration_server/caching_configuration.rst +++ b/admin_manual/configuration_server/caching_configuration.rst @@ -87,7 +87,7 @@ Redis for the distributed server cache:: 'memcache.distributed' => '\OC\Memcache\Redis', 'redis' => [ - 'host' => 'localhost', + 'host' => 'redis-host.example.com', 'port' => 6379, ], @@ -151,7 +151,7 @@ servers in the shared cache pool with their port numbers:: 'memcache.local' => '\OC\Memcache\APCu', 'memcache.distributed' => '\OC\Memcache\Memcached', 'memcached_servers' => [ - [ 'localhost', 11211 ], + [ 'server0.example.com', 11211 ], [ 'server1.example.com', 11211 ], [ 'server2.example.com', 11211 ], ], @@ -182,7 +182,7 @@ Use Redis for everything except local memcache:: 'memcache.distributed' => '\OC\Memcache\Redis', 'memcache.locking' => '\OC\Memcache\Redis', 'redis' => [ - 'host' => 'localhost', + 'host' => 'redis-host.example.com', 'port' => 6379, ],