-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconfigure.sh
48 lines (46 loc) · 1.01 KB
/
configure.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
# New Config
cat > /etc/v2ray/config.json << EOF
{
"inbounds": [
{
"port": $V2RAY_PORT,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "$BACKEND_UUID",
"alterId": 64
}
]
}
},
{
"port": 8188,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "$FRONTEND_UUID",
"alterId": 64
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/$V2RAY_PATH"
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": {}
}
]
}
EOF
# Run V2Ray
/usr/bin/v2ray/v2ray -config=/etc/v2ray/config.json