0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-07-29 18:08:06 +02:00

Compare commits

...

3 commits

Author SHA1 Message Date
Arjun Santhosh
76ee323f3a
Merge ccdd2806e2 into f6d767efb1 2024-09-22 18:53:59 +02:00
Arjun Santhosh
ccdd2806e2
Merge branch 'master' into patch-1
Signed-off-by: Arjun Santhosh <139119101+Hujgo@users.noreply.github.com>
2024-09-20 14:08:55 +04:00
Arjun Santhosh
9f8fca44d4
Update redis.config.php
add dbindex for redis as comment. referenced from a6f2a3c commit

Signed-off-by: Arjun Santhosh <139119101+Hujgo@users.noreply.github.com>
2024-06-15 00:31:01 +05:30

View file

@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) {
'redis' => array(
'host' => getenv('REDIS_HOST'),
'password' => getenv('REDIS_HOST_PASSWORD_FILE') ? trim(file_get_contents(getenv('REDIS_HOST_PASSWORD_FILE'))) : (string) getenv('REDIS_HOST_PASSWORD'),
'dbindex' => (int) getenv('REDIS_DB_INDEX'),
),
);