services/murmur: Added mumble SRV

This commit is contained in:
kat witch 2021-04-26 17:58:32 +01:00
parent 7b1026eb4c
commit 0a42b7d663
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72

View file

@ -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.";
};
};
}