From 44d9e49acb90d0382cf64e091cdc8d3d328cd57c Mon Sep 17 00:00:00 2001 From: xqzr <34030394+xqzr@users.noreply.github.com> Date: Mon, 23 Dec 2024 18:26:06 +0800 Subject: [PATCH] `cMaxReuseTimes` > `hMaxRequestTimes` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **严谨** https://github.com/XTLS/Xray-core/pull/4163 --- VLESS-XHTTP3-Nginx/client.jsonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VLESS-XHTTP3-Nginx/client.jsonc b/VLESS-XHTTP3-Nginx/client.jsonc index 247461b..d56025e 100644 --- a/VLESS-XHTTP3-Nginx/client.jsonc +++ b/VLESS-XHTTP3-Nginx/client.jsonc @@ -33,7 +33,7 @@ "mode": "stream-one", "xmux": { "maxConcurrency": 128, //Nginx 默认上限 128。https://nginx.org/en/docs/http/ngx_http_v3_module.html#http3_max_concurrent_streams - "cMaxReuseTimes": 1000, //Nginx 默认上限 1000。https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_requests + "hMaxRequestTimes": 1000, //Nginx 默认上限 1000。https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_requests "cMaxLifetimeMs": 3600000 //Nginx 默认上限 3600000ms(1h)。https://nginx.org/en/docs/http/ngx_http_core_module.html#keepalive_time } }