nixos/dnschain: disable DNSSEC for namecoin TLDs
This commit is contained in:
parent
210756a450
commit
05ddde928d
@ -136,10 +136,16 @@ in
|
|||||||
"/.dns/127.0.0.1#${toString cfg.dns.port}"
|
"/.dns/127.0.0.1#${toString cfg.dns.port}"
|
||||||
];
|
];
|
||||||
|
|
||||||
services.pdns-recursor.forwardZones = mkIf cfgs.pdns-recursor.resolveDNSChainQueries
|
services.pdns-recursor = mkIf cfgs.pdns-recursor.resolveDNSChainQueries {
|
||||||
{ bit = "127.0.0.1:${toString cfg.dns.port}";
|
forwardZones =
|
||||||
dns = "127.0.0.1:${toString cfg.dns.port}";
|
{ bit = "127.0.0.1:${toString cfg.dns.port}";
|
||||||
};
|
dns = "127.0.0.1:${toString cfg.dns.port}";
|
||||||
|
};
|
||||||
|
luaConfig =''
|
||||||
|
addNTA("bit", "namecoin doesn't support DNSSEC")
|
||||||
|
addNTA("dns", "namecoin doesn't support DNSSEC")
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
users.users = singleton {
|
users.users = singleton {
|
||||||
name = username;
|
name = username;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user