1
1
Fork 0
deployed-nixos-server-and-apps/nixos-apps/jitsi.crueltysquad.com.nix

23 lines
489 B
Nix
Raw Normal View History

2023-04-08 22:38:32 -04:00
{
services.jitsi-meet = {
2023-09-26 10:35:13 -04:00
enable = true;
2023-04-08 22:38:32 -04:00
hostName = "jitsi.crueltysquad.com";
config = {
enableWelcomePage = false;
prejoinPageEnabled = true;
};
interfaceConfig = {
SHOW_JITSI_WATERMARK = false;
SHOW_WATERMARK_FOR_GUESTS = false;
};
jicofo.enable = true;
jibri.enable = true;
caddy.enable = true;
nginx.enable = false;
};
2023-09-26 10:35:13 -04:00
services.jitsi-videobridge.enable = true;
services.jitsi-videobridge.openFirewall = true;
2023-04-08 22:38:32 -04:00
}