This plugin sets a time limit to the conference.
-
Copy this script to the Prosody plugins folder. It's the following folder on Debian
cd /usr/share/jitsi-meet/prosody-plugins/ wget -O mod_time_restricted.lua https://raw.githubusercontent.com/jitsi-contrib/prosody-plugins/main/time_restricted/mod_time_restricted.lua
-
Enable module in your prosody config.
/etc/prosody/conf.d/meet.mydomain.com.cfg.lua
Component "conference.meet.mydomain.com" "muc" modules_enabled = { ... ... "time_restricted"; } conference_max_minutes = 10
-
Restart the services
systemctl restart prosody.service systemctl restart jicofo.service