amnezia-client/client/server_scripts/openvpn_v2ray_vmess/template_v2ray_client.json
2023-02-13 10:05:15 +03:00

31 lines
701 B
JSON

{
"inbounds": [
{
"listen": "127.0.0.1",
"port": $V2RAY_SOCKS_LOCAL_PORT,
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "$REMOTE_HOST",
"port": $V2RAY_VMESS_PORT,
"users": [
{
"id": "$V2RAY_VMESS_CLIENT_UUID"
}
]
}
]
}
}
]
}