diff options
author | 2018-02-18 11:28:02 +0000 | |
---|---|---|
committer | 2018-02-18 11:28:02 +0000 | |
commit | b786e00d3dcffb070f632a40f2c1c8cfb1b091e0 (patch) | |
tree | d67f4308485a1c65f686c2008694ee8d9284c9de | |
parent | Merge remote-tracking branch 'origin/master' (diff) |
Switch back to wss://, again
Diffstat (limited to '')
-rw-r--r-- | templates/ws_test.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/ws_test.html b/templates/ws_test.html index 36be61d6..b2e17ee1 100644 --- a/templates/ws_test.html +++ b/templates/ws_test.html @@ -5,7 +5,7 @@ <h1>Open your JS console to test</h1> <script type="application/javascript"> - let ws = new WebSocket("ws://{{ server_name }}/ws/echo"); + let ws = new WebSocket("wss://{{ server_name }}/ws/echo"); ws.onopen = function(event) { console.log("WS opened! Use send() to send a message."); |