close #164 / add reference to tls option which must be set to true in server mode

This commit is contained in:
Benjamin Sergeant 2020-03-17 08:45:39 -07:00
parent e8f81776f9
commit 3919153a7b

View File

@ -257,7 +257,8 @@ Additional TLS options can be configured by passing a `ix::SocketTLSOptions` ins
webSocket.setTLSOptions({
.certFile = "path/to/cert/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
});
```