dns: add upstream v4 proxy for {home,nuage,}.beta.rz.ens.wtf to kurisu.dual.lahfa.xyz

This commit is contained in:
Raito Bezarius 2021-11-13 23:35:16 +01:00
parent 72b926a6ed
commit dd57d05591

View file

@ -4,6 +4,7 @@ with dns.lib.combinators;
let
my = config.my;
upstream-v4-proxies = [ "51.15.7.181" ]; # kurisu.dual.lahfa.xyz
public-cof-ips = [ "2001:470:1f13:187:c08e:feff:fe4d:f5f5" ];
delegateACMEDNSChallenge = acme: { _acme-challenge.CNAME = [ acme ]; };
@ -35,6 +36,7 @@ with my.ipv6; # contains { standard, acme }
auth.AAAA = standard;
push.AAAA = standard;
ns1.AAAA = standard;
beta.A = upstream-v4-proxies;
beta.AAAA = public-cof-ips;
builders.subdomains = lib.mapAttrs (n: AAAA: { inherit AAAA; }) remoteBuilders;
@ -51,9 +53,11 @@ with my.ipv6; # contains { standard, acme }
};
beta.subdomains = {
nuage.A = upstream-v4-proxies;
nuage.AAAA = public-cof-ips;
minecraft.AAAA = public-cof-ips;
factorio.AAAA = public-cof-ips;
home.A = upstream-v4-proxies;
home.AAAA = public-cof-ips;
};