Xray-examples/VMess-Websocket-TLS/config_client.json
Lem0nade 35bc52e110
Add uTLS fingerprint key for HTTP2 and Websocket client configs (#81)
* Add uTLS fingerprint key to HTTP2 client

* Add uTLS fingerprint key to Websocket-TLS client
2022-10-24 11:56:37 -04:00

66 lines
1.6 KiB
JSON

{
"log": {
"loglevel": "warning"
},
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
"outboundTag": "direct"
}
]
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true,
"ip": "127.0.0.1"
}
},
{
"listen": "127.0.0.1",
"port": "1081",
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "",
"port": 1234,
"users": [
{
"id": "",
"security": "none"
}
]
}
]
},
"streamSettings": {
"network": "ws",
"security": "tls",
"tlsSettings": {
"fingerprint": "chrome" // uTLS fingerprint as traffic camouflage, can be either "chrome" or "firefox" or deleted entirely to disable uTLS
}
},
"tag": "proxy"
},
{
"protocol": "freedom",
"tag": "direct"
}
]
}