2023-01-10 12:34:37 +01:00
|
|
|
|
<!-- Do not edit this file directly, edit its companion .md instead
|
|
|
|
|
and regenerate this file using nixos/doc/manual/md-to-db.sh -->
|
2023-01-03 07:14:51 +01:00
|
|
|
|
<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>
|
2023-01-04 06:56:24 +01:00
|
|
|
|
A minimal configuration using Let’s Encrypt for TLS certificates
|
2023-01-03 07:14:51 +01:00
|
|
|
|
looks like this:
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting>
|
2023-01-04 00:45:35 +01:00
|
|
|
|
{
|
2020-09-10 07:10:48 +02:00
|
|
|
|
services.jitsi-meet = {
|
2023-01-02 22:57:19 +01:00
|
|
|
|
enable = true;
|
2023-01-03 07:14:51 +01:00
|
|
|
|
hostName = "jitsi.example.com";
|
2020-09-10 07:10:48 +02:00
|
|
|
|
};
|
2023-01-02 22:57:19 +01:00
|
|
|
|
services.jitsi-videobridge.openFirewall = true;
|
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
2023-01-03 07:14:51 +01:00
|
|
|
|
security.acme.email = "me@example.com";
|
2023-01-02 22:57:19 +01:00
|
|
|
|
security.acme.acceptTerms = true;
|
2023-01-04 00:45:35 +01:00
|
|
|
|
}
|
|
|
|
|
</programlisting>
|
2023-01-03 07:14:51 +01:00
|
|
|
|
</section>
|
|
|
|
|
<section xml:id="module-services-jitsi-configuration">
|
|
|
|
|
<title>Configuration</title>
|
|
|
|
|
<para>
|
|
|
|
|
Here is the minimal configuration with additional configurations:
|
|
|
|
|
</para>
|
|
|
|
|
<programlisting>
|
2023-01-04 00:45:35 +01:00
|
|
|
|
{
|
2020-09-10 07:10:48 +02:00
|
|
|
|
services.jitsi-meet = {
|
2023-01-02 22:57:19 +01:00
|
|
|
|
enable = true;
|
2023-01-03 07:14:51 +01:00
|
|
|
|
hostName = "jitsi.example.com";
|
2023-01-02 22:57:19 +01:00
|
|
|
|
config = {
|
2020-09-10 07:10:48 +02:00
|
|
|
|
enableWelcomePage = false;
|
|
|
|
|
prejoinPageEnabled = true;
|
2023-01-03 07:14:51 +01:00
|
|
|
|
defaultLang = "fi";
|
2020-09-10 07:10:48 +02:00
|
|
|
|
};
|
2023-01-02 22:57:19 +01:00
|
|
|
|
interfaceConfig = {
|
2020-09-10 07:10:48 +02:00
|
|
|
|
SHOW_JITSI_WATERMARK = false;
|
|
|
|
|
SHOW_WATERMARK_FOR_GUESTS = false;
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-01-02 22:57:19 +01:00
|
|
|
|
services.jitsi-videobridge.openFirewall = true;
|
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
2023-01-03 07:14:51 +01:00
|
|
|
|
security.acme.email = "me@example.com";
|
2023-01-02 22:57:19 +01:00
|
|
|
|
security.acme.acceptTerms = true;
|
2023-01-04 00:45:35 +01:00
|
|
|
|
}
|
|
|
|
|
</programlisting>
|
2023-01-03 07:14:51 +01:00
|
|
|
|
</section>
|
2020-09-10 07:10:48 +02:00
|
|
|
|
</chapter>
|