Merge pull request #16 from comzeradd/libredns

Add LibreDNS DoH provider
This commit is contained in:
Kenta Kubo 2020-12-07 08:36:05 +09:00 committed by GitHub
commit 47f6590b45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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"
)
)
),
]
}