v2ray-examples/Socks5-TLS/config_client.json

66 lines
1.5 KiB
JSON
Raw Normal View History

2018-03-29 23:44:50 +08:00
{
2018-04-16 17:07:21 +08:00
"log": {
"loglevel": "warning"
},
2020-08-01 21:43:29 +08:00
"routing": {
2020-08-29 13:35:06 +08:00
"domainStrategy": "AsIs",
2020-08-01 21:43:29 +08:00
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
2020-11-22 05:47:52 +08:00
"outboundTag": "direct"
2020-08-01 21:43:29 +08:00
}
]
2018-04-16 17:07:21 +08:00
},
2020-08-01 21:43:29 +08:00
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"auth": "noauth",
2020-08-01 23:07:26 +08:00
"udp": true,
2020-08-01 21:43:29 +08:00
"ip": "127.0.0.1"
}
},
{
"listen": "127.0.0.1",
"port": "1081",
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "socks",
"settings": {
"servers": [
2020-08-01 21:43:29 +08:00
{
"address": "",
"port": 1234,
"users": [
{
"user": "",
"pass": ""
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
2021-01-14 01:50:28 +08:00
"serverName": "example.domain"
2018-04-16 17:07:21 +08:00
}
2020-08-01 21:43:29 +08:00
},
"tag": "proxy"
2018-04-16 17:07:21 +08:00
},
2020-08-01 21:43:29 +08:00
{
"protocol": "freedom",
"tag": "direct"
2018-04-16 17:07:21 +08:00
}
2020-08-01 21:43:29 +08:00
]
2020-07-31 20:50:20 +08:00
}