Compare commits

...

2 Commits

Author SHA1 Message Date
quackerd cfa167ad23 xray-vision
continuous-integration/drone/push Build is passing Details
2023-01-02 15:01:51 +01:00
quackerd 5e7ed23e95 xray-vision 2023-01-02 15:00:17 +01:00
3 changed files with 24 additions and 15 deletions

View File

@ -2,15 +2,17 @@
2. 打开V2rayNG app
3. 右上角箭头->新加配置文件->手动输入[VLess]
别名:随便起
地址:{{ FQDN }}
端口:{{ PORT }}
用户id{{ USER }}
流控flow{{ FLOW }}
传输协议tcp
伪装类型none
底层传输安全xtls
跳过证书验证false
别名(remarks):随便起
地址(address){{ FQDN }}
端口(port){{ PORT }}
用户ID(id){{ USER }}
流控(flow){{ FLOW }}
传输协议(network)tcp
伪装类型(type)none
传输层安全(tls)tls
uTLS: firefox
alpn: h2,http/1.1
跳过证书验证(allowInsecure)false
以上没有提到的选项统统默认值

View File

@ -88,8 +88,7 @@
{
"id": "{{ USER }}",
"encryption": "none",
"flow": "{{ FLOW }}",
"level": 0
"flow": "{{ FLOW }}"
}
]
}
@ -97,10 +96,11 @@
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"security": "tls",
"tlsSettings": {
"serverName": "{{ FQDN }}",
"allowInsecure": false,
"fingerprint": "safari",
"alpn": ["h2","http/1.1"]
}
}

View File

@ -21,8 +21,8 @@
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"security": "tls",
"tlsSettings": {
"alpn": ["http/1.1", "h2"],
"certificates": [
{
@ -31,6 +31,13 @@
}
]
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
}
],