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

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

Jitsi Meet Load Balancing Using Docker JVB (Jitsi Video Bridge) Ubuntu 20.04

https://www.ai38ml.com/install-jitsi-meet-using-docker-in-ubuntu-18-04/ In the above setup step edit the file to the prosody section in docker-compose.yml  ports: - '5222:5222' Also, check 5222 port is open from now and network security. Same docker setup folder…

Continue ReadingJitsi Meet Load Balancing Using Docker JVB (Jitsi Video Bridge) Ubuntu 20.04

Jitsi Meet Behind NAT & Advance Settings

If your server is behind NAT, you need to add below extra line to file /etc/jitsi/videobridge/sip-communicator.properties nano /etc/jitsi/videobridge/sip-communicator.properties org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=<Local.IP.Address> org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=<Public.IP.Address> <Local.IP.Address> is internal or private IP address like 10.xx.xx.xx <Public.IP.Address>…

Continue ReadingJitsi Meet Behind NAT & Advance Settings