From 52b86e9fb703d651817f74cc7cdabc38699d80f6 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Wed, 2 Jun 2021 21:15:13 +0200 Subject: [PATCH] Fix missing `wssPort` for SSL example --- docs/basic-usage/ssl.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/basic-usage/ssl.md b/docs/basic-usage/ssl.md index 7e700d8459..70a02e4232 100644 --- a/docs/basic-usage/ssl.md +++ b/docs/basic-usage/ssl.md @@ -61,6 +61,7 @@ window.Echo = new Echo({ key: 'your-pusher-key', wsHost: window.location.hostname, wsPort: 6001, + wssPort: 6001, disableStats: true, forceTLS: true });