From 897c5cab6ef5c6229ef85a0bf195e68d5846d1d3 Mon Sep 17 00:00:00 2001 From: IRN-Kawakaze <41798687+IRN-Kawakaze@users.noreply.github.com> Date: Mon, 22 Jul 2024 23:55:16 +0800 Subject: [PATCH] Update VLESS-TLS-SplitHTTP-H3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1、Delete client fingerprint config. 2、Add README.md. 3、Add suggestions for use with CDN. --- VLESS-TLS-SplitHTTP-H3/README.md | 8 ++++++++ VLESS-TLS-SplitHTTP-H3/client.json | 2 -- VLESS-TLS-SplitHTTP-H3/server.json | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 VLESS-TLS-SplitHTTP-H3/README.md diff --git a/VLESS-TLS-SplitHTTP-H3/README.md b/VLESS-TLS-SplitHTTP-H3/README.md new file mode 100644 index 0000000..3ea7bd9 --- /dev/null +++ b/VLESS-TLS-SplitHTTP-H3/README.md @@ -0,0 +1,8 @@ +# 原理图: +直连:Xray client <--- HTTP3 ---> Xray server +配合 CDN 使用:Xray client <--- HTTP3 ---> CDN <--- HTTP2 or HTTP/1.1 ---> Xray server + +注意: + +默认配置仅支持客户端通过 HTTP3 直连服务端,如需和 CDN 一同使用,请参照注释修改服务端的 alpn。 + diff --git a/VLESS-TLS-SplitHTTP-H3/client.json b/VLESS-TLS-SplitHTTP-H3/client.json index 35d3a77..2bb806d 100644 --- a/VLESS-TLS-SplitHTTP-H3/client.json +++ b/VLESS-TLS-SplitHTTP-H3/client.json @@ -43,8 +43,6 @@ }, "tlsSettings": { "serverName": "example.com", // Change to your domain. - "fingerprint": "chrome", - "minVersion": "1.3", "alpn": [ "h3" ] diff --git a/VLESS-TLS-SplitHTTP-H3/server.json b/VLESS-TLS-SplitHTTP-H3/server.json index 13c864c..b70823c 100644 --- a/VLESS-TLS-SplitHTTP-H3/server.json +++ b/VLESS-TLS-SplitHTTP-H3/server.json @@ -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": [ {