From 0a42b7d663d8a744f41f9f156a381f455563f806 Mon Sep 17 00:00:00 2001 From: kat witch Date: Mon, 26 Apr 2021 17:58:32 +0100 Subject: [PATCH] services/murmur: Added mumble SRV --- services/murmur.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/services/murmur.nix b/services/murmur.nix index 6b12b31e..a0afbc88 100644 --- a/services/murmur.nix +++ b/services/murmur.nix @@ -26,4 +26,30 @@ domain = "voice"; cname.target = "athame.kittywit.ch."; }; + + deploy.tf.dns.records.kittywitch_voice_tcp = { + tld = "kittywit.ch."; + domain = "@"; + srv = { + service = "mumble"; + proto = "tcp"; + priority = 0; + weight = 5; + port = 64738; + target = "voice.kittywit.ch."; + }; + }; + + deploy.tf.dns.records.kittywitch_voice_udp = { + tld = "kittywit.ch."; + domain = "@"; + srv = { + service = "mumble"; + proto = "udp"; + priority = 0; + weight = 5; + port = 64738; + target = "voice.kittywit.ch."; + }; + }; }