Skip to content

Commit

Permalink
Fix: update doh server
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Nov 12, 2024
1 parent cd6578a commit c46afc3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Build/validate-domain-alive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ const dohServers: Array<[string, DNS2.DnsResolver]> = ([
// 'zero.dns0.eu',
'dns.nextdns.io',
'anycast.dns.nextdns.io',
'wikimedia-dns.org',
// 'wikimedia-dns.org',
// 'ordns.he.net',
// 'dns.mullvad.net',
'basic.rethinkdns.com'
// 'ada.openbld.net',
// 'dns.rabbitdns.org'
] as const).map(server => [
server,
] as const).map(dns => [
dns,
DNS2.DOHClient({
dns: server,
dns,
http: false
// get: (url: string) => undici.request(url).then(r => r.body)
})
Expand Down

0 comments on commit c46afc3

Please sign in to comment.