depot/hosts/prophet/services/meet/default.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2023-02-24 16:16:15 +02:00
{ config, lib, depot, tools, ... }:
2022-02-04 01:08:05 +02:00
let
2023-02-24 16:16:15 +02:00
inherit (depot.reflection) interfaces;
2022-02-04 01:08:05 +02:00
in
2021-10-16 21:24:57 +03:00
{
services.jitsi-meet = {
enable = true;
hostName = "meet.${tools.meta.domain}";
nginx.enable = true;
jicofo.enable = true;
videobridge.enable = true;
prosody.enable = true;
config = {
p2p.enabled = false;
startAudioOnly = true;
};
2021-10-16 21:24:57 +03:00
};
services.jitsi-videobridge = {
openFirewall = true;
2022-05-15 01:35:02 +03:00
apis = [ "colibri" "rest" ];
config.videobridge = {
ice = {
tcp.port = 7777;
};
stats.transports = [
{ type = "muc"; }
{ type = "colibri"; }
];
};
2023-02-24 16:16:15 +02:00
nat = lib.optionalAttrs interfaces.primary.isNat {
localAddress = interfaces.primary.addr;
publicAddress = interfaces.primary.addrPublic;
};
};
2021-10-16 21:24:57 +03:00
services.nginx.virtualHosts."meet.${tools.meta.domain}" = {
enableACME = true;
forceSSL = true;
locations."=/images/watermark.svg" = {
return = "200";
};
};
systemd.services = lib.genAttrs [ "jicofo" "jitsi-meet-init-secrets" "jitsi-videobridge2" "prosody" ] (_: {
serviceConfig = {
Slice = "communications.slice";
};
});
boot.kernel.sysctl."net.core.rmem_max" = lib.mkForce 10485760;
2021-10-16 21:24:57 +03:00
}