remove ipv6 addreses

This commit is contained in:
Pim Kunis 2024-04-09 08:58:59 +02:00
parent 33b3786f98
commit ef7b1bd189

View file

@ -26,24 +26,12 @@ in
];
subdomains = rec {
"*" = host cfg.public.ipv4.router cfg.dmz.ipv6.dockerSwarm;
"*".A = [ cfg.public.ipv4.router ];
ns = host cfg.public.ipv4.router cfg.dmz.ipv6.services;
ns1 = ns;
ns2 = ns;
# Override because we don't support IPv6 for Git SSH.
git = {
A = [ cfg.public.ipv4.router ];
AAAA = [ ];
};
# Override because we don't support IPv6 for KMS.
kms = {
A = [ cfg.public.ipv4.router ];
AAAA = [ ];
};
# Override because wg is on opnsense so ipv6 differs from "cfg.dmz.ipv6.services"
wg = host cfg.public.ipv4.router cfg.dmz.ipv6.router;