This step-by-step guide will help you to set up a jitsi meet instance with Meet host authentication and some other tweaks. Make sure to replace meet.example.com
with your own address.
meet.example.com
to your hosts file: [...]127.0.0.1 localhost meet.example.com[...]
443
, 4443
and 10000/udp
wget https://download.jitsi.org/jitsi-key.gpg.key
sudo apt-key add jitsi-key.gpg.key
/etc/apt/sources.list.d/jitsi-stable.list
: deb https://download.jitsi.org stable/
apt update
and apt install jitsi-meet`meet.example.com
authentication = "anonyomous"
to authentication = "internal_plain"
in the /etc/prosody/conf.avail/meet.example.com.cfg.lua
config fileVirtualHost "guest.meet.example.com"
authentication = "anonymous"
c2s_require_encryption = false
/etc/jitsi/meet/meet.example.com.js
to this: anonymousdomain: 'guest.meet.example.com',
org.jitsi.jicofo.auth.URL=XMPP:meet.example.com
to the config file /etc/jitsi/jicofo/sip-communicator.properties`sudo prosodyctl register [user] meet.example.com
and enter the password/usr/share/jitsi-meet/interface_config.js
by setting RECENT_LIST_ENABLED: false,
/etc/jitsi/meet/meet.example.com-config.js
by searching and setting disableThirdPartyRequests: true,
to true
/etc/jitsi/videobridge/logging.properties
to .level=WARNING
systemctl restart prosody.service
, systemctl restart jicofo.service
and systemctl restart jitsi-videobridge2.service