mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
Merge pull request #16 from comzeradd/libredns
Add LibreDNS DoH provider
This commit is contained in:
commit
47f6590b45
1 changed files with 22 additions and 0 deletions
|
|
@ -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"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue