secubox-openwrt/package/secubox/secubox-app-jitsi/files/usr/lib/secubox/haproxy.d/jitsi.cfg
CyberMind-FR 00082fe066 feat(jitsi): Add Jitsi Meet video conferencing integration
- secubox-app-jitsi: Docker-based Jitsi stack with jitsctl control CLI
- luci-app-jitsi: LuCI web configuration interface
- Catalog entry for SecuBox AppStore

Features:
- End-to-end encrypted video conferencing
- HAProxy integration with WebSocket/SSL support
- Mesh federation for SecuBox P2P network
- User authentication management
- Backup/restore functionality

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 13:29:06 +01:00

22 lines
622 B
INI

# HAProxy configuration snippet for Jitsi Meet
# Include in main haproxy.cfg or via haproxy.d directory
# Frontend rule for Jitsi (add to your HTTPS frontend)
# acl is_jitsi hdr(host) -i meet.example.com
# use_backend jitsi_web if is_jitsi
backend jitsi_web
mode http
option httpchk GET /
http-check expect status 200
# WebSocket support
option http-server-close
timeout tunnel 1h
server jitsi 127.0.0.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