forked from aresbigboy/android_xray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.simple
55 lines (55 loc) · 1.3 KB
/
config.json.simple
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
49
50
51
52
53
54
55
{
"inbounds": [
{
"port": 1099,
"protocol": "dokodemo-door",
"settings": {
"network": "tcp,udp",
"followRedirect": true
},
"sniffing": {
"enabled": true,
"destOverride": ["http", "tls"]
}
}
],
"log": {
"loglevel": "none"
},
"outbounds": [
{
"mux": {"enabled": false},
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "填vps的ip地址。注意一定用ip,不要用域名",
"port": 填vps上搭建的v2ray的服务端口。通常tls+ws模式是443,仅ws模式是80,
"users": [
{
"alterId": 1,
"id": "填你自己v2ray的UUID",
"security": "auto"
}
]
}
]
},
"streamSettings": {
"network": "ws",
"security": "tls",
"tlssettings": {
"allowInsecure": true,
"serverName": "填你自己申请的域名,或者其他想伪装域名"
},
"wssettings": {
"connectionReuse": true,
"headers": {
"Host": "填你自己的域名,或其他想伪装的域名"
},
"path": "填你自己v2ray配置的PATH路径"
}
}
}
]
}