Merge pull request #82 from T0biii/patch-1

add FFMUC DNS Server (doh & dot)
This commit is contained in:
Kenta Kubo 2024-07-17 00:44:44 +09:00 committed by GitHub
commit 143b2845b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -210,5 +210,33 @@ enum Presets {
)
)
),
.init(
name: "Freifunk Muenchen DNS",
configuration: .dnsOverTLS(
DoTConfiguration(
servers: [
"5.1.66.255",
"185.150.99.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",
"185.150.99.255",
"2001:678:e68:f000::",
"2001:678:ed0:f000::",
],
serverURL: URL(string: "https://doh.ffmuc.net/dns-query")
)
)
),
]
}