forked from Fachschaft/nixConfig
Jitsi konfiguriert
This commit is contained in:
parent
e8929ff159
commit
274c658cb2
2 changed files with 18 additions and 0 deletions
|
@ -3,6 +3,7 @@ flake-inputs:
|
|||
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
(import ./jitsi.nix flake-inputs)
|
||||
../../roles
|
||||
./network.nix
|
||||
];
|
||||
|
|
17
nixos/machines/ghatanothoa/jitsi.nix
Normal file
17
nixos/machines/ghatanothoa/jitsi.nix
Normal 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 ];
|
||||
}
|
Loading…
Reference in a new issue