Update config_server.json

服务端没有屏蔽geosite,用IPOnDemand性能更好。同时关闭流量探测,可以用tor
This commit is contained in:
Dulcinea 2023-02-04 16:16:58 +08:00 committed by GitHub
parent 5d6676b34c
commit 09a1589431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,12 +3,13 @@
"loglevel": "warning" "loglevel": "warning"
}, },
"routing": { "routing": {
"domainStrategy": "IPIfNonMatch", "domainStrategy": "IPOnDemand",
"rules": [ "rules": [
{ {
"type": "field", "type": "field",
"ip": [ "ip": [
"geoip:cn" "geoip:cn",
"geoip:private"
], ],
"outboundTag": "block" "outboundTag": "block"
} }
@ -16,7 +17,6 @@
}, },
"inbounds": [ "inbounds": [
{ {
"listen": "0.0.0.0",
"port": 16387, // "port": 16387, //
"protocol": "vless", "protocol": "vless",
"settings": { "settings": {
@ -39,13 +39,6 @@
} }
] ]
} }
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
} }
} }
], ],