You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray/config/server/tcp.json

85 lines
1.4 KiB

7 years ago
{
6 years ago
"log": {
"access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log",
"loglevel": "warning"
},
"inbounds": [
{
"port": 2333,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "e55c8d17-2cf3-b21a-bcf1-eeacb011ed79",
"level": 1,
"alterId": 233
}
]
},
"streamSettings": {
"network": "tcp"
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
}
//include_ss
//include_socks
//include_mtproto
6 years ago
//include_in_config
6 years ago
//
],
"outbounds": [
{
"protocol": "freedom",
5 years ago
"settings": {
"domainStrategy": "UseIP"
},
"tag": "direct"
6 years ago
},
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
}
6 years ago
//include_out_config
//
6 years ago
],
"dns": {
5 years ago
"servers": [
"https+local://dns.google/dns-query",
6 years ago
"8.8.8.8",
3 years ago
"1.1.1.1",
6 years ago
"localhost"
]
},
"routing": {
"domainStrategy": "IPOnDemand",
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
"outboundTag": "blocked"
}
//include_ban_xx
6 years ago
//include_ban_bt
//include_ban_ad
//include_rules
//
]
},
"transport": {
"kcpSettings": {
"uplinkCapacity": 100,
"downlinkCapacity": 100,
"congestion": true
5 years ago
}
6 years ago
}
7 years ago
}