Only redis_host without port

Signed-off-by: marceljd <support@dihosting.ch>
This commit is contained in:
marceljd 2019-01-15 19:29:07 +01:00 committed by marceljd
parent f2ee88d352
commit 536fb66212

View File

@ -5,7 +5,6 @@ if (getenv('REDIS_HOST')) {
'memcache.locking' => '\OC\Memcache\Redis', 'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array( 'redis' => array(
'host' => getenv('REDIS_HOST'), 'host' => getenv('REDIS_HOST'),
'port' => getenv('REDIS_PORT') ?: 6379,
), ),
); );
} }