summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/jitsi-meet.xml
blob: 4d2d8aa55e19f969e004a8b506489b2589678e56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!-- Do not edit this file directly, edit its companion .md instead
     and regenerate this file using nixos/doc/manual/md-to-db.sh -->
<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="module-services-jitsi-meet">
  <title>Jitsi Meet</title>
  <para>
    With Jitsi Meet on NixOS you can quickly configure a complete,
    private, self-hosted video conferencing solution.
  </para>
  <section xml:id="module-services-jitsi-basic-usage">
    <title>Basic usage</title>
    <para>
      A minimal configuration using Let’s Encrypt for TLS certificates
      looks like this:
    </para>
    <programlisting>
{
  services.jitsi-meet = {
    enable = true;
    hostName = &quot;jitsi.example.com&quot;;
  };
  services.jitsi-videobridge.openFirewall = true;
  networking.firewall.allowedTCPPorts = [ 80 443 ];
  security.acme.email = &quot;me@example.com&quot;;
  security.acme.acceptTerms = true;
}
</programlisting>
  </section>
  <section xml:id="module-services-jitsi-configuration">
    <title>Configuration</title>
    <para>
      Here is the minimal configuration with additional configurations:
    </para>
    <programlisting>
{
  services.jitsi-meet = {
    enable = true;
    hostName = &quot;jitsi.example.com&quot;;
    config = {
      enableWelcomePage = false;
      prejoinPageEnabled = true;
      defaultLang = &quot;fi&quot;;
    };
    interfaceConfig = {
      SHOW_JITSI_WATERMARK = false;
      SHOW_WATERMARK_FOR_GUESTS = false;
    };
  };
  services.jitsi-videobridge.openFirewall = true;
  networking.firewall.allowedTCPPorts = [ 80 443 ];
  security.acme.email = &quot;me@example.com&quot;;
  security.acme.acceptTerms = true;
}
</programlisting>
  </section>
</chapter>