Skip to content

Latest commit

 

History

History

secure_domain_lobby_bypass

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Secure Domain Lobby Bypass

This plugin allows you to let some users bypass the lobby based on the authentication.

This plugin works only for BOSH clients. It doesn't support XMPP websocket.

Installation

  • Set up secure domain and check that it works before proceeding.

  • 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_secure_domain_lobby_bypass.lua https://raw.githubusercontent.com/jitsi-contrib/prosody-plugins/main/secure_domain_lobby_bypass/mod_secure_domain_lobby_bypass.lua
  • Enable module in your prosody config.

    /etc/prosody/conf.d/meet.mydomain.com.cfg.lua

    Component "conference.meet.mydomain.com" "muc"
      modules_enabled = {
        -- ... existing modules
        "secure_domain_lobby_bypass";
      }
  • Restart the services

    systemctl restart prosody.service