mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
Fix LibreDNS configurations
This commit is contained in:
parent
47f6590b45
commit
27abb7d53a
1 changed files with 4 additions and 4 deletions
|
|
@ -96,22 +96,22 @@ enum Presets {
|
|||
.init(
|
||||
name: "LibreDNS",
|
||||
configuration: .dnsOverHTTPS(
|
||||
DoTConfiguration(
|
||||
DoHConfiguration(
|
||||
servers: [
|
||||
"116.202.176.26",
|
||||
],
|
||||
serverName: "https://doh.libredns.gr/dns-query"
|
||||
serverURL: URL(string: "https://doh.libredns.gr/dns-query")
|
||||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "LibreDNS (No Ads)",
|
||||
configuration: .dnsOverHTTPS(
|
||||
DoTConfiguration(
|
||||
DoHConfiguration(
|
||||
servers: [
|
||||
"116.202.176.26",
|
||||
],
|
||||
serverName: "https://doh.libredns.gr/ads"
|
||||
serverURL: URL(string: "https://doh.libredns.gr/ads")
|
||||
)
|
||||
)
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue