mirror of https://github.com/XTLS/Xray-examples
Update VLESS-TLS-SplitHTTP-H3
1、Delete client fingerprint config. 2、Add README.md. 3、Add suggestions for use with CDN.pull/191/head
parent
db5d80cddf
commit
897c5cab6e
|
@ -0,0 +1,8 @@
|
|||
# 原理图:
|
||||
直连:Xray client <--- HTTP3 ---> Xray server
|
||||
配合 CDN 使用:Xray client <--- HTTP3 ---> CDN <--- HTTP2 or HTTP/1.1 ---> Xray server
|
||||
|
||||
注意:
|
||||
|
||||
默认配置仅支持客户端通过 HTTP3 直连服务端,如需和 CDN 一同使用,请参照注释修改服务端的 alpn。
|
||||
|
|
@ -43,8 +43,6 @@
|
|||
},
|
||||
"tlsSettings": {
|
||||
"serverName": "example.com", // Change to your domain.
|
||||
"fingerprint": "chrome",
|
||||
"minVersion": "1.3",
|
||||
"alpn": [
|
||||
"h3"
|
||||
]
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"rejectUnknownSni": true,
|
||||
"minVersion": "1.3",
|
||||
"alpn": [
|
||||
"h3"
|
||||
"h3" // If you want to use with CDN, you need to change alpn to ["h2", "http/1.1"].
|
||||
],
|
||||
"certificates": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue