mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
add FFMUC DNS Server
This commit is contained in:
parent
1da5ecef36
commit
a68dccf9d1
1 changed files with 28 additions and 0 deletions
|
|
@ -210,5 +210,33 @@ enum Presets {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
.init(
|
||||||
|
name: "Freifunk Muenchen DNS",
|
||||||
|
configuration: .dnsOverTLS(
|
||||||
|
DoTConfiguration(
|
||||||
|
servers: [
|
||||||
|
"5.1.66.255",
|
||||||
|
"5.1.66.255",
|
||||||
|
"2001:678:e68:f000::",
|
||||||
|
"2001:678:ed0:f000::",
|
||||||
|
],
|
||||||
|
serverName: "dot.ffmuc.net"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
.init(
|
||||||
|
name: "Freifunk Muenchen DNS",
|
||||||
|
configuration: .dnsOverHTTPS(
|
||||||
|
DoHConfiguration(
|
||||||
|
servers: [
|
||||||
|
"5.1.66.255",
|
||||||
|
"5.1.66.255",
|
||||||
|
"2001:678:e68:f000::",
|
||||||
|
"2001:678:ed0:f000::",
|
||||||
|
],
|
||||||
|
serverURL: URL(string: "https://doh.ffmuc.net/dns-query")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue