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:
Lem0nade 2022-10-24 19:26:37 +03:30 committed by GitHub
parent e2147abd96
commit 35bc52e110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -50,7 +50,10 @@
},
"streamSettings": {
"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"
},

View File

@ -50,7 +50,10 @@
},
"streamSettings": {
"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"
},