feat: added phildeb minecraft server

This commit is contained in:
silver 2024-01-12 18:57:34 +00:00
parent c86556bff4
commit 2b6e629d30

View file

@ -93,6 +93,13 @@ in {
r_type = "CNAME"; r_type = "CNAME";
value = cfg.host.name; value = cfg.host.name;
} }
# phildeb
{
record = "phildeb.${cfg.domain.sub}";
r_type = "CNAME";
value = cfg.host.name;
}
]; ];
networking.firewall.allowedTCPPorts = [ networking.firewall.allowedTCPPorts = [
@ -131,7 +138,7 @@ in {
ports = ["25565:25565/tcp"]; ports = ["25565:25565/tcp"];
expose = ["25565"]; expose = ["25565"];
command = [ command = [
"--mapping=compsoc_classic.${short_domain}=mc_config:20000,compsoc.${short_domain}=mc_config:20001,gsoc.${short_domain}=mc_config:20002,gsoc.${short_domain}=mc_config:20002,gsoc_abridged.${short_domain}=mc_config:20003" "--mapping=compsoc_classic.${short_domain}=mc_config:20000,compsoc.${short_domain}=mc_config:20001,gsoc.${short_domain}=mc_config:20002,gsoc.${short_domain}=mc_config:20002,gsoc_abridged.${short_domain}=mc_config:20003,phildeb.${short_domain}=mc_config:20004"
]; ];
}; };
@ -159,6 +166,9 @@ in {
"20001:20001/tcp" "20001:20001/tcp"
# games # games
"20002:20002/tcp" "20002:20002/tcp"
"20003:20003/tcp"
# phildeb
"20004:20004/tcp"
]; ];
}; };
}; };