feat: update XHTTP template with full configuration and domain variable

This commit is contained in:
Haitao Pan 2026-01-31 18:46:13 +08:00
parent 740cdfd7ba
commit 94da3fdead

View File

@ -1,20 +1,16 @@
{
"log": {
"loglevel": "debug"
},
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
"outboundTag": "blocked"
}
]
"loglevel": "warning"
},
"inbounds": [
{
"port": "1080",
"listen": "::1",
"protocol": "socks",
"settings": {
"udp": true
}
},
{
"listen": "/dev/shm/xray.sock,0666",
"protocol": "vless",
@ -30,21 +26,73 @@
"network": "xhttp",
"xhttpSettings": {
"mode": "auto",
"path": "/split"
"path": "/split",
"xmux": {
"maxConcurrency": 0,
"hMaxRequestTimes": 0,
"hMaxReusableSecs": 0
}
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": {},
"tag": "direct"
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "{{.Domain}}",
"port": 443,
"users": [
{
"id": "{{ UUID }}",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "xhttp",
"xhttpSettings": {
"path": "/split",
"mode": "auto",
"xmux": {
"maxConcurrency": 128,
"hMaxRequestTimes": 1000,
"hMaxReusableSecs": 3600
}
},
"security": "tls",
"tlsSettings": {
"alpn": [
"h3"
]
}
}
},
{
"tag": "direct",
"protocol": "freedom",
"settings": {}
},
{
"tag": "blocked",
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
"settings": {}
}
]
],
"routing": {
"domainStrategy": "IPOnDemand",
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
"outboundTag": "blocked"
}
]
}
}