mirror of
https://github.com/XTLS/Xray-examples.git
synced 2025-06-29 05:36:05 +08:00
26 lines
578 B
JSON
26 lines
578 B
JSON
{
|
|
"protocol": "vmess",
|
|
"settings": {
|
|
"vnext": [
|
|
{
|
|
"address": "",
|
|
"port": 443, // You can also use the default http3 port of 8443 nginx https://quic.nginx.org/readme.html
|
|
"users": [
|
|
{
|
|
"id": "",
|
|
"security": "zero"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"streamSettings": {
|
|
"network": "quic",
|
|
"quicSettings": {}, // Native quic traffic signature without masquerading headers and extra encryption
|
|
"security": "tls",
|
|
"tlsSettings": {
|
|
"servername": "*" //servername is required because quic will verify sni otherwise no packet will be sent
|
|
}
|
|
}
|
|
}
|