Deployed 3919153 with MkDocs version: 1.1

This commit is contained in:
Benjamin Sergeant
2020-03-17 07:47:59 -08:00
parent c8965c8b6a
commit 6c443ee5c5
7 changed files with 78 additions and 11 deletions

View File

@ -330,7 +330,8 @@ uint32_t m = webSocket.getMaxWaitBetweenReconnectionRetries();
<pre><code class="cpp">webSocket.setTLSOptions({
.certFile = &quot;path/to/cert/file.pem&quot;,
.keyFile = &quot;path/to/key/file.pem&quot;,
.caFile = &quot;path/to/trust/bundle/file.pem&quot;
.caFile = &quot;path/to/trust/bundle/file.pem&quot;,
.tls = true // required in server mode
});
</code></pre>