Skip to content

Commit 5486c88

Browse files
authored
Merge pull request #4842 from tesilaaliset/fix/fix_relase_bugs
2 parents 3d75ddc + 3f64393 commit 5486c88

10 files changed

+16
-6
lines changed

common/packages.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
xray|25.3.6|amd64|https://github.com/XTLS/Xray-core/releases/download/v25.3.6/Xray-linux-64.zip|82d4be3a5ed8bd2621df9c9913c3a2761b86a42ae8485da836f7447ff2ec3d4d
2+
xray|25.3.6|arm64|https://github.com/XTLS/Xray-core/releases/download/v25.3.6/Xray-linux-arm64-v8a|1595f446b3d3a2bfe4a737e3cdb4c189c8c4e271322a7a2a0f5ea735b9511e80
13
xray|25.2.21|amd64|https://github.com/XTLS/Xray-core/releases/download/v25.2.21/Xray-linux-64.zip|3e90f0bbb5bbb2b397f46fec96b0eb4a240448bf8d282666da2f80cbaaa24fe7
24
xray|25.2.21|arm64|https://github.com/XTLS/Xray-core/releases/download/v25.2.21/Xray-linux-arm64-v8a.zip|5f4d82f0d02a8646a0af0debd027503c2a8a752f04dd7f0539037ca877bb2e33
35
xray|24.11.30|amd64|https://github.com/XTLS/Xray-core/releases/download/v24.11.30/Xray-linux-64.zip|679d6ec1c2ecabd84ad1e2deab6e52789c52f0a387902cc72e135a3bb3949554

xray/add_version.sh

100644100755
File mode changed.

xray/configs/05_inbounds_02_realityh2_main.json.j2

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
"tcpSettings": {
2424
"acceptProxyProtocol": true
2525
},
26+
"xhttpSettings": {
27+
"mode": "auto"
28+
},
2629
"security": "reality",
2730
"realitySettings": {
2831
"show": false,

xray/configs/05_inbounds_10_trojan_splithttp.json.j2

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"network": "xhttp",
1919
"security": "none",
2020
"xhttpSettings": {
21-
{# "acceptProxyProtocol": true, #}
21+
"mode": "auto",
22+
{# "acceptProxyProtocol": true, #}
2223
"path":"/{{ hconfigs['path_trojan'] }}{{ hconfigs['path_xhttp'] }}",
2324
}
2425
},

xray/configs/05_inbounds_10_vless_splithttp.json.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"network": "xhttp",
2020
"security": "none",
2121
"xhttpSettings": {
22+
"mode": "auto",
2223
{# "acceptProxyProtocol": true,#}
2324
"path": "/{{ hconfigs['path_vless'] }}{{ hconfigs['path_xhttp'] }}",
2425
}

xray/configs/05_inbounds_10_vmess_splithttp.json.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"network": "xhttp",
1919
"security": "none",
2020
"xhttpSettings": {
21+
"mode": "auto",
2122
{#"acceptProxyProtocol": true,#}
2223
"path": "/{{ hconfigs['path_vmess'] }}{{ hconfigs['path_xhttp'] }}",
2324
}

xray/configs/05_inbounds_h2_trojan_splithttp.json.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
{% and hconfigs['trojan_enable'] and hconfigs['xhttp_enable'] %}
2+
{% if hconfigs['trojan_enable'] and hconfigs['xhttp_enable'] %}
33
"inbounds": [
44
{
55
"tag":"trojan-xhttp-h2",

xray/configs/05_inbounds_h2_vless_new.json.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"network": "xhttp",
1919
"security": "none",
2020
"xhttpSettings": {
21-
"mode": "stream-one",
21+
"mode": "auto",
2222
"path": "/{{ hconfigs['path_vless'] }}{{ hconfigs['path_tcp'] }}",
2323
}
2424

xray/configs/05_inbounds_h2_vless_splithttp.json.j2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
{% and hconfigs['vless_enable'] and hconfigs['xhttp_enable'] %}
2+
{% if hconfigs['vless_enable'] and hconfigs['xhttp_enable'] %}
33
"inbounds": [
44
{
55
"tag":"vless-xhttp-h2",
@@ -19,7 +19,8 @@
1919
"security": "none",
2020
"xhttpSettings": {
2121
{# "acceptProxyProtocol": true,#}
22-
"path": "/{{ hconfigs['path_vless'] }}{{ hconfigs['path_xhttp'] }}2",
22+
"path": "/{{ hconfigs['path_vless'] }}{{ hconfigs['path_xhttp'] }}2",
23+
"mode": "auto"
2324
}
2425
},
2526
"sniffing": {

xray/configs/05_inbounds_h2_vmess_splithttp.json.j2

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"security": "none",
1919
"xhttpSettings": {
2020
{#"acceptProxyProtocol": true,#}
21-
"path": "/{{ hconfigs['path_vmess'] }}{{ hconfigs['path_xhttp'] }}2",
21+
"path": "/{{ hconfigs['path_vmess'] }}{{ hconfigs['path_xhttp'] }}2",
22+
"mode": "auto"
2223
}
2324
},
2425
"sniffing": {

0 commit comments

Comments
 (0)