From 2cb4d8b34d25743833bae0063c4d86cb3cff0c0d Mon Sep 17 00:00:00 2001 From: Ark74 Date: Mon, 13 Apr 2020 16:22:40 -0500 Subject: [PATCH] Add secure rooms, missing --- Home.md | 3 ++- Secure Rooms.md | 54 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 Secure Rooms.md diff --git a/Home.md b/Home.md index b696d7f..4199fd7 100644 --- a/Home.md +++ b/Home.md @@ -1,5 +1,6 @@ Welcome to the quick-jibri-installer wiki! * [[Custom brandless mode]] +* [[Secure Rooms]] * [[Jibri Recording]] -* [[Jigasi Transcript]] \ No newline at end of file +* [[Jigasi Transcript]] diff --git a/Secure Rooms.md b/Secure Rooms.md new file mode 100644 index 0000000..f0189e8 --- /dev/null +++ b/Secure Rooms.md @@ -0,0 +1,54 @@ +Secure rooms allow to secure the access from open public to make sure the resources on the server are used by the members of your team or organization. + +## Prosody + +Our current installation uses prosody as a local authentication mechanism. + +While running the quick-jibri-installer.sh script it will create the first moderator account. + +Here we document the prosody commands to manage your users on the server. + +### Commands + +In server/vm/vps using root USER, please use any of the following orders, + +To add new user, + +``` +prosodyctl adduser user@YOUR.DOMAIN.LTD +``` + +To change password, + +``` +prosodyctl passwd user@YOUR.DOMAIN.LTD +``` + +To delete existing user, + +``` +prosodyctl deluser user@YOUR.DOMAIN.LTD +``` + +where *user* can be changed for the one you need.\ +Also *your.domain.ltd* can be changed from your *domain.com* or *sub.domain.com* + +Once you are to login on the your Jitsi Meet instance with secure rooms enabled, you can use any of the following formats for the user, + +* user@your.domain.ltd + +or only, + +* user + +to login on the interface. + +### User listing + +Also we have added a prosody external module to allow listing of the existing users. + +``` +prosodyctl mod_listusers +``` + +**Important**: Please don't remove any account used by the system. \ No newline at end of file