nixos-config/modules/services/jitsi-meet.nix

28 lines
658 B
Nix
Raw Permalink Normal View History

2024-12-03 09:21:26 +01:00
{ ... }:
{
services = {
jitsi-meet = {
enable = true;
hostName = "meet.liv.town";
prosody.lockdown = true;
config = {
enableWelcomePage = false;
prejoinPageEnabled = true;
};
interfaceConfig = {
SHOW_JITSI_WATERMARK = false;
SHOW_WATERMARK_FOR_GUESTS = false;
};
2024-12-03 09:21:26 +01:00
};
nginx.virtualHosts."meet.liv.town" = {
forceSSL = true;
sslCertificate = "/var/lib/acme/liv.town/cert.pem";
sslCertificateKey = "/var/lib/acme/liv.town/key.pem";
locations."/" = {
proxyPass = "http://localhost:8080";
proxyWebsockets = true;
};
2024-12-03 09:21:26 +01:00
};
};
}