From 31d9342918ecc451fa5cfbf74f2acb8b4e540228 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 31 May 2023 17:01:45 -0400 Subject: [PATCH] Assume reverse proxy setup for janus for http as well --- web/js/MonitorStream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/MonitorStream.js b/web/js/MonitorStream.js index a57bf5ed2..4f97efcfc 100644 --- a/web/js/MonitorStream.js +++ b/web/js/MonitorStream.js @@ -191,7 +191,7 @@ function MonitorStream(monitorData) { // Assume reverse proxy setup for now server = "https://" + window.location.hostname + "/janus"; } else { - server = "http://" + window.location.hostname + ":8088/janus"; + server = "http://" + window.location.hostname + "/janus"; } if (janus == null) {