Add LibreDNS DoH provider

This adds two endpoints, second one filtering ads and trackers.

Fixes #14
This commit is contained in:
Nikos Roussos 2020-11-17 14:25:27 +02:00
parent b203047d8f
commit ac355978da
No known key found for this signature in database
GPG key ID: 3F353739BCE4F3DE

View file

@ -93,5 +93,27 @@ enum Presets {
)
)
),
.init(
name: "LibreDNS",
configuration: .dnsOverHTTPS(
DoTConfiguration(
servers: [
"116.202.176.26",
],
serverName: "https://doh.libredns.gr/dns-query"
)
)
),
.init(
name: "LibreDNS (No Ads)",
configuration: .dnsOverHTTPS(
DoTConfiguration(
servers: [
"116.202.176.26",
],
serverName: "https://doh.libredns.gr/ads"
)
)
),
]
}