close #164 / add reference to tls option which must be set to true in server mode
This commit is contained in:
@ -257,7 +257,8 @@ Additional TLS options can be configured by passing a `ix::SocketTLSOptions` ins
|
|||||||
webSocket.setTLSOptions({
|
webSocket.setTLSOptions({
|
||||||
.certFile = "path/to/cert/file.pem",
|
.certFile = "path/to/cert/file.pem",
|
||||||
.keyFile = "path/to/key/file.pem",
|
.keyFile = "path/to/key/file.pem",
|
||||||
.caFile = "path/to/trust/bundle/file.pem"
|
.caFile = "path/to/trust/bundle/file.pem",
|
||||||
|
.tls = true // required in server mode
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user