mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
Update 1.1.1.1 preset
This commit is contained in:
parent
73cd4c75ae
commit
b3b1fdd6ac
1 changed files with 32 additions and 4 deletions
|
|
@ -44,8 +44,8 @@ enum Presets {
|
|||
servers: [
|
||||
"1.1.1.1",
|
||||
"1.0.0.1",
|
||||
"2606:4700:4700::64",
|
||||
"2606:4700:4700::6400",
|
||||
"2606:4700:4700::1111",
|
||||
"2606:4700:4700::1001",
|
||||
],
|
||||
serverName: "cloudflare-dns.com"
|
||||
)
|
||||
|
|
@ -58,13 +58,41 @@ enum Presets {
|
|||
servers: [
|
||||
"1.1.1.1",
|
||||
"1.0.0.1",
|
||||
"2606:4700:4700::64",
|
||||
"2606:4700:4700::6400",
|
||||
"2606:4700:4700::1111",
|
||||
"2606:4700:4700::1001",
|
||||
],
|
||||
serverURL: URL(string: "https://cloudflare-dns.com/dns-query")
|
||||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "1.1.1.1 (Block Malware)",
|
||||
configuration: .dnsOverTLS(
|
||||
DoTConfiguration(
|
||||
servers: [
|
||||
"1.1.1.2",
|
||||
"1.0.0.2",
|
||||
"2606:4700:4700::1112",
|
||||
"2606:4700:4700::1002",
|
||||
],
|
||||
serverName: "cloudflare-dns.com"
|
||||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "1.1.1.1 (Block Malware)",
|
||||
configuration: .dnsOverHTTPS(
|
||||
DoHConfiguration(
|
||||
servers: [
|
||||
"1.1.1.2",
|
||||
"1.0.0.2",
|
||||
"2606:4700:4700::1112",
|
||||
"2606:4700:4700::1002",
|
||||
],
|
||||
serverURL: URL(string: "https://security.cloudflare-dns.com/dns-query")
|
||||
)
|
||||
)
|
||||
),
|
||||
.init(
|
||||
name: "Quad9",
|
||||
configuration: .dnsOverTLS(
|
||||
|
|
|
|||
Loading…
Reference in a new issue