Disable all ipv6 until we fix the wireguard issue
This commit is contained in:
parent
e7d75fbb21
commit
3c947a55a9
1 changed files with 9 additions and 2 deletions
|
@ -23,11 +23,18 @@ myLib: dns: with dns.lib.combinators; {
|
||||||
subdomains = rec {
|
subdomains = rec {
|
||||||
"*".A = [ myLib.globals.routerPublicIPv4 ];
|
"*".A = [ myLib.globals.routerPublicIPv4 ];
|
||||||
|
|
||||||
ns = host myLib.globals.routerPublicIPv4 myLib.globals.bind9Ipv6;
|
ns = {
|
||||||
|
A = [ myLib.globals.routerPublicIPv4 ];
|
||||||
|
AAAA = [ ];
|
||||||
|
};
|
||||||
|
|
||||||
ns1 = ns;
|
ns1 = ns;
|
||||||
ns2 = 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
|
#for SMTP2GO to be able send emails from kun.is domain
|
||||||
em670271 = {
|
em670271 = {
|
||||||
|
|
Loading…
Reference in a new issue