|
v2ray会搭建吗,像这样就能屏蔽国内域名,还能去广告
{
"log": {
"loglevel": "info"
},
"inbounds": [
{
"protocol": "shadowsocks",
"port": 1234,
"settings": {
"method": "aes-128-gcm",
"password": "12345678",
"network": "tcp,udp"
}
}
],
"outbounds": [
{
"tag": "direct",
"protocol": "freedom"
},
{
"tag": "reject",
"protocol": "blackhole"
}
],
"routing": {
"rules": [
{
"type": "field",
"outboundTag": "reject",
"domain": [
"geosite:category-ads-all",
"geosite:cn"
]
},
{
"type": "field",
"outboundTag": "reject",
"ip": [
"geoip:private",
"geoip:cn"
]
}
]
}
} |
|