0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-24 20:34:10 +02:00

Set redis password (#856)

This commit is contained in:
algakzru 2019-09-10 08:31:16 +08:00 committed by J0WI
parent 892ac14791
commit 73ff5c860d
27 changed files with 92 additions and 13 deletions

View file

@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
'redis' => array(
'host' => getenv('REDIS_HOST'),
'port' => getenv('REDIS_HOST_PORT') ?: 6379,
'password' => getenv('REDIS_HOST_PASSWORD'),
),
);
}