aboutsummaryrefslogtreecommitdiffstats
path: root/templates/ws_test.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-18 11:28:02 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-18 11:28:02 +0000
commitb786e00d3dcffb070f632a40f2c1c8cfb1b091e0 (patch)
treed67f4308485a1c65f686c2008694ee8d9284c9de /templates/ws_test.html
parentMerge remote-tracking branch 'origin/master' (diff)
Switch back to wss://, again
Diffstat (limited to '')
-rw-r--r--templates/ws_test.html2
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.");