mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-22 08:31:29 +00:00
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
This commit is contained in:
parent
e2147abd96
commit
35bc52e110
|
@ -50,7 +50,10 @@
|
||||||
},
|
},
|
||||||
"streamSettings": {
|
"streamSettings": {
|
||||||
"network": "http",
|
"network": "http",
|
||||||
"security": "tls"
|
"security": "tls",
|
||||||
|
"tlsSettings": {
|
||||||
|
"fingerprint": "chrome" // uTLS fingerprint as traffic camouflage, can be either "chrome" or "firefox" or deleted entirely to disable uTLS
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"tag": "proxy"
|
"tag": "proxy"
|
||||||
},
|
},
|
||||||
|
|
|
@ -50,7 +50,10 @@
|
||||||
},
|
},
|
||||||
"streamSettings": {
|
"streamSettings": {
|
||||||
"network": "ws",
|
"network": "ws",
|
||||||
"security": "tls"
|
"security": "tls",
|
||||||
|
"tlsSettings": {
|
||||||
|
"fingerprint": "chrome" // uTLS fingerprint as traffic camouflage, can be either "chrome" or "firefox" or deleted entirely to disable uTLS
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"tag": "proxy"
|
"tag": "proxy"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue