xray-vision

This commit is contained in:
quackerd 2023-01-02 15:00:17 +01:00
parent ce06a48962
commit 5e7ed23e95
3 changed files with 25 additions and 16 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

@ -87,8 +87,7 @@
{
"id": "{{ USER }}",
"encryption": "none",
"flow": "{{ FLOW }}",
"level": 0
"flow": "{{ FLOW }}"
}
]
}
@ -96,10 +95,11 @@
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"security": "tls",
"tlsSettings": {
"serverName": "{{ FQDN }}",
"allowInsecure": false
"allowInsecure": false,
"fingerprint": "safari"
}
}
},

View File

@ -21,8 +21,8 @@
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"security": "tls",
"tlsSettings": {
"certificates": [
{
"certificateFile": "/etc/letsencrypt/live/{{ FQDN }}/fullchain.pem",
@ -30,6 +30,13 @@
}
]
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
}
],