lab-infra/machines/voice01/murmur.nix
Constantin Gierczak--Galle 6d09d3a0b3
Some checks failed
Check meta / check_meta (push) Failing after 14s
lint / check (push) Successful in 17s
build configuration / build_krz01 (push) Failing after 15s
feat(voice01): init (#12)
Also update dns01 config.

This PR adds the configuration for a Mumble server @voice.lab.dgnum.eu

Reviewed-on: #12
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2025-01-13 12:34:03 +01:00

21 lines
530 B
Nix

let
port = 64738;
in
{
services.murmur = {
inherit port;
enable = true;
openFirewall = true;
users = 16;
welcometext = "Bienvenue sur le serveur Mumble expérimental de la DGNum.";
registerHostname = "voice.lab.dgnum.eu";
password = "coupe-boulon";
logFile = "/var/log/murmur/murmurd.log";
};
services.nginx.virtualHosts."voice.lab.dgnum.eu" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];
locations."/".proxyPass = "http://localhost:${toString port}/";
};
}