1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-04 01:24:09 +02:00

redis tls support

This commit is contained in:
Robin Appelman 2025-05-01 21:02:07 +02:00
commit 071c476c4c
18 changed files with 308 additions and 3 deletions

View file

@ -0,0 +1,11 @@
'redis' => [
'host' => 'tls://127.0.0.1',
'port' => 6379,
'ssl_context' => [
'local_cert' => '/redis-certificates/client.crt',
'local_pk' => '/redis-certificates/client.key',
'cafile' => '/redis-certificates/ca.crt',
'verify_peer_name' => false,
],
],
//PLACEHOLDER