mirror of https://github.com/v2ray/v2ray-core
update domain mapping in default config
parent
81ce61c243
commit
10d90f5fc1
|
@ -83,14 +83,17 @@
|
||||||
"dns": {
|
"dns": {
|
||||||
// Static hosts, similar to hosts file.
|
// Static hosts, similar to hosts file.
|
||||||
"hosts": {
|
"hosts": {
|
||||||
// Blacklist all Baidu domains, including all sub domains.
|
// Match v2ray.com to another domain on CloudFlare. This domain will be used when querying IPs for v2ray.com.
|
||||||
"domain:baidu.com": "127.0.0.1",
|
"domain:v2ray.com": "www.vicemc.net",
|
||||||
|
|
||||||
// Match v2ray.com to another domain on CloudFlare. This domain will be used
|
// The following settings help to eliminate DNS poisoning in mainland China.
|
||||||
// when querying IPs for v2ray.com.
|
// It is safe to comment these out if this is not the case for you.
|
||||||
"domain:v2ray.com": "www.vicemc.net"
|
"domain:github.io": "pages.github.com",
|
||||||
|
"domain:wikipedia.org": "www.wikimedia.org",
|
||||||
|
"domain:shadowsocks.org": "electronicsrealm.com"
|
||||||
},
|
},
|
||||||
"servers": [
|
"servers": [
|
||||||
|
"1.1.1.1",
|
||||||
{
|
{
|
||||||
"address": "114.114.114.114",
|
"address": "114.114.114.114",
|
||||||
"port": 53,
|
"port": 53,
|
||||||
|
@ -100,7 +103,6 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"8.8.8.8",
|
"8.8.8.8",
|
||||||
"1.1.1.1",
|
|
||||||
"localhost"
|
"localhost"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue