From c0cab9ae36eae2877addf521b4bf66927efcbec3 Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Sun, 8 Feb 2026 11:36:58 +0100 Subject: [PATCH] fix(jitsi): Use LAN IP instead of localhost for backends MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - jitsi_web: 127.0.0.1:8443 → 192.168.255.1:8443 - jitsi_xmpp: 127.0.0.1:5280 → 192.168.255.1:5280 Co-Authored-By: Claude Opus 4.5 --- .../files/usr/lib/secubox/haproxy.d/jitsi.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/secubox/secubox-app-jitsi/files/usr/lib/secubox/haproxy.d/jitsi.cfg b/package/secubox/secubox-app-jitsi/files/usr/lib/secubox/haproxy.d/jitsi.cfg index d447855e..dc317b80 100644 --- a/package/secubox/secubox-app-jitsi/files/usr/lib/secubox/haproxy.d/jitsi.cfg +++ b/package/secubox/secubox-app-jitsi/files/usr/lib/secubox/haproxy.d/jitsi.cfg @@ -12,10 +12,10 @@ backend jitsi_web # WebSocket support option http-server-close timeout tunnel 1h - server jitsi 127.0.0.1:8443 check ssl verify none + server jitsi 192.168.255.1:8443 check ssl verify none # XMPP BOSH/WebSocket backend (if needed separately) backend jitsi_xmpp mode http option httpchk GET /http-bind - server prosody 127.0.0.1:5280 check + server prosody 192.168.255.1:5280 check