forked from lxhao61/integrated-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXray_SS_patch_config.json
46 lines (44 loc) · 1.36 KB
/
Xray_SS_patch_config.json
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
//Xray从v1.2.3版开始支持Shadowsocks AEAD单端口多用户,配置方法与vmess、vless、trojan协议配置单端口多用户类似。AEAD就是aes-256-gcm、aes-128-gcm、chacha20-ietf-poly1305加密算法。
//原配置:
//.........<省略>........
"settings": {
"method": "aes-128-gcm",
"password": "diy2008", //修改为自己的密码
"email": "[email protected]"
},
//.........<省略>........
//以上配置修改为如下:
//单用户
//.........<省略>........
"settings": {
"clients": [
{
"method": "aes-128-gcm",
"password": "diy2008", //修改为自己的密码
"email": "[email protected]"
}
]
},
//.........<省略>........
//多用户
//.........<省略>........
"settings": {
"clients": [
{
"method": "aes-256-gcm",
"password": "diy2018", //修改为自己的密码
"email": "[email protected]"
},
{
"method": "aes-128-gcm",
"password": "diy2028", //修改为自己的密码
"email": "[email protected]"
},
{
"method": "chacha20-ietf-poly1305",
"password": "diy2038", //修改为自己的密码
"email": "[email protected]"
}
]
},
//.........<省略>........