jitsimeet
Table of Contents
Description
This module installs and manages a Jitsi Meet instance.
It currently only support Debian.
Setup
Setup Requirements
This module needs:
- the stdlib module
- the prosody module
The following modules may also be required, depending on the options you use:
- the let's encrypt module
- the nginx module
Explicit dependencies can be found in the project's metadata.json file.
Getting started
Here is an example of a working configuration:
class { 'jitsimeet':
jitsi_domain => 'jitsi.example.com',
manage_certs => true,
jitsi_vhost_ssl_key => '/etc/letsencrypt/live/jitsi.example.com/privkey.pem'
jitsi_vhost_ssl_cert => '/etc/letsencrypt/live/jitsi.example.com/cert.pem'
auth_vhost_ssl_key => '/etc/letsencrypt/live/auth.jitsi.example.com/privkey.pem'
auth_vhost_ssl_cert => '/etc/letsencrypt/live/auth.jitsi.example.com/cert.pem'
jvb_secret => 'mysupersecretstring',
focus_secret => 'anothersupersecretstring',
focus_user_password => 'yetanothersecret',
}
Limitations
At the moment the only operating system supported is Debian 10 (Buster). The module might also work with compatible Ubuntu version, but this hasn't been widely tested.
For the other limitations, see the project's Issue Tracker.
Reference
The full reference documentation for this module may be found at on GitLab Pages.
Alternatively, you may build yourself the documentation using the
puppet strings generate
command. See the documentation for
Puppet Strings for more information.
Development
This module's development is tracked on GitLab. Please submit issues and merge requests on the shared-puppet-modules-group/jitsimeet project page.