-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrace-dns-proxy.toml
More file actions
39 lines (30 loc) · 965 Bytes
/
race-dns-proxy.toml
File metadata and controls
39 lines (30 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# DNS Providers Configuration
[providers]
[providers.alidns-doh]
addr = "223.5.5.5:443"
# addr = "[2400:3200::1]:443"
hostname = "dns.alidns.com"
domain_groups = ["default"]
[providers.dnspod-doh]
addr = "1.12.12.12:443"
hostname = "doh.pub"
domain_groups = ["default"]
[providers.google-doh]
addr = "8.8.8.8:443"
hostname = "dns.google"
domain_groups = ["google", "google_exclude", "social"]
[providers.cloudflare-doh]
addr = "1.1.1.1:443"
hostname = "1.1.1.1"
domain_groups = ["google", "google_exclude", "social"]
[providers.quad9-doh]
addr = "9.9.9.9:443"
hostname = "dns.quad9.net"
domain_groups = ["google", "google_exclude", "social"]
# Domain Groups Configuration
[domain_groups]
default = [] # All domains
google = ["google.com", "google.com.hk", "googleapis.com", "youtube.com"]
# Use prefix '!' to exclude domains
google_exclude = ["!safebrowsing.googleapis.com"]
social = ["facebook.com", "x.com", "instagram.com", "twitter.com", "github.com"]