Infini-DL360/jitsi: init
This commit is contained in:
parent
018b09e7f1
commit
74e705697f
2 changed files with 24 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
||||||
./freshrss.nix
|
./freshrss.nix
|
||||||
./hydra.nix
|
./hydra.nix
|
||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
|
./jitsi.nix
|
||||||
./postgresql.nix
|
./postgresql.nix
|
||||||
./thelounge.nix
|
./thelounge.nix
|
||||||
./vaultwarden.nix
|
./vaultwarden.nix
|
||||||
|
|
23
hosts/Infini-DL360/jitsi.nix
Normal file
23
hosts/Infini-DL360/jitsi.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.services.jitsi-meet;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.jitsi-meet = {
|
||||||
|
enable = true;
|
||||||
|
hostName = config.common.subdomain "meet";
|
||||||
|
config = {
|
||||||
|
prejoinPageEnabled = true;
|
||||||
|
disableModeratorIndicator = true;
|
||||||
|
};
|
||||||
|
interfaceConfig = {
|
||||||
|
SHOW_JITSI_WATERMARK = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.jitsi-videobridge.openFirewall = true;
|
||||||
|
|
||||||
|
services.nginx.virtualHosts.${cfg.hostName} = {
|
||||||
|
acmeRoot = null;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue