Deprecate VLESS-TCP-TLS-WS and add VLESS-XHTTP-Reality (#230)

* tag VLESS-TCP-TLS-WS as deprecated instead of recommended

* Add a minimal  VLESS-XHTTP-Reality configuration
This commit is contained in:
rnotlnglgq
2025-07-20 15:57:59 +00:00
committed by GitHub
parent d4e592b842
commit c7e8d285a0
11 changed files with 313 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"port": 10800,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "example.com", // 换成你的域名或服务器 IP发起请求时无需解析域名了
"port": 443,
"users": [
{
"id": "", // 填写你的 UUID
"encryption": "none",
"level": 0
}
]
}
]
},
"streamSettings": {
"network": "ws",
"security": "tls",
"tlsSettings": {
"serverName": "example.com" // 换成你的域名
},
"wsSettings": {
"path": "/websocket" // 必须换成自定义的 PATH需要和服务端的一致
}
}
}
]
}