-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Lobby Deactivate | ||
|
||
This plugin deactivates the lobby after the first join. | ||
|
||
It is expected to be used with [lobby_autostart](../lobby_autostart). It keeps | ||
the lobby active for unauthorized users but deactivates it when an authorized | ||
user joins the meeting. | ||
|
||
## Installation | ||
|
||
- Copy this script to the Prosody plugins folder. It's the following folder on | ||
Debian | ||
|
||
```bash | ||
cd /usr/share/jitsi-meet/prosody-plugins/ | ||
wget -O mod_lobby_deactivate.lua https://raw.githubusercontent.com/jitsi-contrib/prosody-plugins/main/mod_lobby_deactivate/mod_lobby_deactivate.lua | ||
``` | ||
|
||
- Enable module in your prosody config. | ||
|
||
_/etc/prosody/conf.d/meet.mydomain.com.cfg.lua_ | ||
|
||
```lua | ||
Component "conference.meet.mydomain.com" "muc" | ||
modules_enabled = { | ||
... | ||
... | ||
"lobby_deactivate"; | ||
} | ||
``` | ||
|
||
- Restart the services | ||
|
||
```bash | ||
systemctl restart prosody.service | ||
systemctl restart jicofo.service | ||
``` | ||
|
||
## Sponsors | ||
|
||
[![Nordeck](/images/nordeck.png)](https://nordeck.net/) |