From aa76443b11b0765107680d566bd3b34bcc872986 Mon Sep 17 00:00:00 2001 From: Andreas Greiner Date: Sun, 13 Jun 2021 17:15:52 +0200 Subject: [PATCH] Different wss URL for greinet.com --- public/js/newchat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/newchat.js b/public/js/newchat.js index 219c753..b6b7526 100644 --- a/public/js/newchat.js +++ b/public/js/newchat.js @@ -1,5 +1,5 @@ var msgerChat = null; -var socketurl = 'ws://127.0.0.1:8181/'; +var socketurl = 'wss://rpiwss.greinet.com:8083/'; /** Standartnachricht ausgeben und Websocket-Verbindung aufbauen */ window.onload=function(){ @@ -104,4 +104,4 @@ function formatDate(date) { */ function random(min, max) { return Math.floor(Math.random() * (max - min) + min); -} \ No newline at end of file +}