Files
edgetunnel/v2rayconf.sh
2020-12-13 13:08:44 +00:00

28 lines
566 B
Bash
Executable File

cat << EOF > /etc/v2ray/config.json
{
"inbounds": [
{
"port": $PORT,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "$UUID",
"alterId": 64
}
],
"disableInsecureEncryption": true
},
"streamSettings": {
"network": "ws"
}
}
],
"outbounds": [
{
"protocol": "freedom"
}
]
}
EOF