Copy JMS website to a new domain for multi-location domain system for Octo (cascaded bridges) Jitsi Meet

sudo su apt update apt install nginx-full -y apt install certbot -y apt install python3-certbot-nginx -y Add the file with below location /etc/nginx/sites-available/<new.domain.com>.conf Add below content to the file /etc/nginx/sites-available/<new.domain.com>.conf…

Continue ReadingCopy JMS website to a new domain for multi-location domain system for Octo (cascaded bridges) Jitsi Meet

JVB Jitsi Video Bridge Auto Scale Script

Add below script after #!/bin/bash line nano /usr/share/jitsi-videobridge/jvb.sh PUBLIC_ADDRESS=`curl ifconfig.me` LOCAL_ADDRESS=`hostname -I | awk '{print $1}'` sed -i "s/\(org.jitsi.videobridge.octo.BIND_ADDRESS=\).*\$/\1${LOCAL_ADDRESS}/" /etc/jitsi/videobridge/sip-communicator.properties sed -i "s/\(org.jitsi.videobridge.octo.PUBLIC_ADDRESS=\).*\$/\1${PUBLIC_ADDRESS}/" /etc/jitsi/videobridge/sip-communicator.properties sed -i "/^org.jitsi.videobridge.xmpp.user.shard.MUC_NICKNAME=/ \ s/=.*/=$(uuidgen)/" /etc/jitsi/videobridge/sip-communicator.properties…

Continue ReadingJVB Jitsi Video Bridge Auto Scale Script

How to enable Jitsi Meet WebSocket (XMPP-WebSocket) and smacks for Prosody

https://www.ai38ml.com/how-to-update-prosody-in-jitsi-meet-in-ubuntu-or-how-to-solve-issue-of-disconnected-participant-shown-in-conference/ After updating the prosody server you need to change in prosody config /etc/prosody/conf.avail/your-domain.com.cfg.lua like below cross_domain_websocket = true; consider_websocket_secure = true; VirtualHost "your-domain.com" ... modules_enabled = { "bosh"; "websocket";…

Continue ReadingHow to enable Jitsi Meet WebSocket (XMPP-WebSocket) and smacks for Prosody