From 3919153a7b945c70b0016eb34f2a5c0a8c4ee8db Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Tue, 17 Mar 2020 08:45:39 -0700 Subject: [PATCH] close #164 / add reference to tls option which must be set to true in server mode --- docs/usage.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/usage.md b/docs/usage.md index b3aa0c96..f9193c52 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -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 }); ```