mirror of
https://github.com/nextcloud/docker.git
synced 2025-05-23 23:44:22 +02:00
Enable TLS connection for Redis
Signed-off-by: Adam Vest <ziris85@live.com>
This commit is contained in:
parent
dd663d60c6
commit
c18d0b1f44
19 changed files with 29 additions and 29 deletions
|
@ -4,7 +4,7 @@ if (getenv('REDIS_HOST')) {
|
|||
'memcache.distributed' => '\OC\Memcache\Redis',
|
||||
'memcache.locking' => '\OC\Memcache\Redis',
|
||||
'redis' => array(
|
||||
'host' => getenv('REDIS_HOST'),
|
||||
'host' => ($_ENV['REDIS_PROTOCOL'] ?? 'tcp') . "://" . getenv('REDIS_HOST'),
|
||||
'password' => getenv('REDIS_HOST_PASSWORD_FILE') ? trim(file_get_contents(getenv('REDIS_HOST_PASSWORD_FILE'))) : (string) getenv('REDIS_HOST_PASSWORD'),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue