Jitsi konfiguriert

This commit is contained in:
Gonne Kretschmer 2023-10-20 11:04:40 +02:00
parent e8929ff159
commit 274c658cb2
2 changed files with 18 additions and 0 deletions

View file

@ -3,6 +3,7 @@ flake-inputs:
imports = [
./hardware-configuration.nix
(import ./jitsi.nix flake-inputs)
../../roles
./network.nix
];

View file

@ -0,0 +1,17 @@
flake-inputs:
{pkgs, config, lib, modulesPath, ...}: {
imports = [(modulesPath + "/services/web-apps/jitsi-meet.nix")];
services.jitsi-meet = {
enable = true;
hostName = "meet.mathebau.de";
config = {
defaultLang = "de";
};
};
services.nginx.virtualHosts."meet.mathebau.de".enableACME = false;
services.nginx.virtualHosts."meet.mathebau.de".forceSSL = false;
services.jitsi-videobridge.openFirewall = true;
networking.firewall.allowedTCPPorts = [ 80 ];
}