1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

fix TLS self-signed certificate example

This commit is contained in:
Leibale Eidelman
2021-12-18 21:41:59 -05:00
committed by GitHub
parent 4975eb798e
commit 2733e225ae

View File

@@ -57,8 +57,8 @@ createClient({
createClient({
socket: {
tls: true,
rejectUnauthorized: true,
rejectUnauthorized: false,
cert: '...'
}
});
```
```