Disable all ipv6 until we fix the wireguard issue

This commit is contained in:
Pim Kunis 2024-06-29 10:59:56 +02:00
parent e7d75fbb21
commit 3c947a55a9

View file

@ -23,11 +23,18 @@ myLib: dns: with dns.lib.combinators; {
subdomains = rec {
"*".A = [ myLib.globals.routerPublicIPv4 ];
ns = host myLib.globals.routerPublicIPv4 myLib.globals.bind9Ipv6;
ns = {
A = [ myLib.globals.routerPublicIPv4 ];
AAAA = [ ];
};
ns1 = ns;
ns2 = ns;
wg = host myLib.globals.routerPublicIPv4 myLib.globals.routerPublicIPv6;
wg = {
A = [ myLib.globals.routerPublicIPv4 ];
AAAA = [ ];
};
#for SMTP2GO to be able send emails from kun.is domain
em670271 = {