-
Notifications
You must be signed in to change notification settings - Fork 0
/
2_xray_config.json
209 lines (209 loc) · 6.42 KB
/
2_xray_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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"log": {
"loglevel": "warning",
"error": "/var/log/xray/error.log",
"access": "/var/log/xray/access.log"
},
"inbounds": [
{
"listen": "/dev/shm/vless.sock", //VLESS+Vision+TLS 监听进程
"protocol": "vless",
"settings": {
"clients": [
{
"id": "048e0bf2-dd56-11e9-aa37-5600024c1d6a", //修改为自己的 UUID
"flow": "xtls-rprx-vision", //启用 XTLS Vision
"email": "[email protected]"
}
],
"decryption": "none",
"fallbacks": [
{
"alpn": "h2", //h2 回落匹配
"dest": "/dev/shm/h2c.sock", //h2 回落进程
"xver": 2 //开启 PROXY protocol 发送,发送真实来源 IP 和端口给 Nginx。 1 或 2 表示 PROXY protocol 版本。
}, //对应 Nginx 版本小于 v1.25.1 配置,否则必须删除。
{
"dest": "/dev/shm/h1.sock", //http/1.1 回落进程或 h2 回落与 http/1.1 回落共用进程(对应 Nginx 版本不小于 v1.25.1 配置,回落共用进程修改为 /dev/shm/h1h2c.sock。)
"xver": 2 //开启 PROXY protocol 发送,发送真实来源 IP 和端口给 Nginx。 1 或 2 表示 PROXY protocol 版本。
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"certificates": [
{
"ocspStapling": 3600,
"certificateFile": "/home/tls/zv.xx.yy/zv.xx.yy.crt", //换成自己的证书,绝对路径。
"keyFile": "/home/tls/zv.xx.yy/zv.xx.yy.key" //换成自己的密钥,绝对路径。
}
],
"minVersion": "1.2"
},
"tcpSettings": {
"acceptProxyProtocol": true //开启 PROXY protocol 接收,接收 Nginx SNI 分流前真实来源 IP 和端口。
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
},
{
"listen": "/dev/shm/trojan.sock", //Trojan+TCP+TLS 监听进程
"protocol": "trojan",
"settings": {
"clients": [
{
"password":"diy6443", //修改为自己密码
"email": "[email protected]"
}
],
"fallbacks": [
{
"alpn": "h2", //h2 回落匹配
"dest": "/dev/shm/h2c.sock", //h2 回落进程
"xver": 2 //开启 PROXY protocol 发送,发送真实来源 IP 和端口给 Nginx。 1 或 2 表示 PROXY protocol 版本。
}, //对应 Nginx 版本小于 v1.25.1 配置,否则必须删除。
{
"dest": "/dev/shm/h1.sock", //http/1.1 回落进程或 h2 回落与 http/1.1 回落共用进程(对应 Nginx 版本不小于 v1.25.1 配置,回落共用进程修改为 /dev/shm/h1h2c.sock。)
"xver": 2 //开启 PROXY protocol 发送,发送真实来源 IP 和端口给 Nginx。 1 或 2 表示 PROXY protocol 版本。
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"certificates": [
{
"ocspStapling": 3600,
"certificateFile": "/home/tls/zt.xx.yy/zt.xx.yy.crt", //换成自己的证书,绝对路径。
"keyFile": "/home/tls/zt.xx.yy/zt.xx.yy.key" //换成自己的密钥,绝对路径。
}
],
"minVersion": "1.2",
"maxVersion": "1.2",
"cipherSuites": "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256:TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256" //非 AES 算法的密码套件。若无 RSA 证书,可删除 RSA 算法的密码套件;无 ECC 证书,可删除 ECDSA 算法的密码套件。
},
"tcpSettings": {
"acceptProxyProtocol": true //开启 PROXY protocol 接收,接收 Nginx SNI 分流前真实来源 IP 和端口。
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
},
{
"listen": "/dev/shm/vmessws.sock", //VMess+WebSocket 监听进程
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "21376258-dd56-11e9-aa37-5600024c1d6a", //修改为自己的 UUID
"email": "[email protected]"
}
]
},
"streamSettings": {
"network": "ws",
"security": "none",
"wsSettings": {
"path": "/HALdGZ9k" //修改为自己的路径
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
},
{
"listen": "127.0.0.1", //只监听本机,避免本机外的机器探测到下面端口。
"port": 2011, //Shadowsocks+gRPC 监听端口
"protocol": "shadowsocks",
"settings": {
"method": "2022-blake3-chacha20-poly1305",
"password": "3FezOkwhvB5vb3y25C13IYYtM6KbI37EjbX0lLlx7oo=", //修改为自己的密钥
"email": "[email protected]"
},
"streamSettings": {
"network": "grpc",
"security": "none",
"grpcSettings": {
"serviceName": "SALdGZ9k" //修改为自己的 gRPC 服务名称
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
},
{
"port": 2052, //监听端口
"protocol": "vless",
"settings": {
"clients": [
{
"id": "0a652466-dd56-11e9-aa37-5600024c1d6a", //修改为自己的 UUID
"email": "[email protected]"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "kcp",
"security": "none",
"kcpSettings": {
"uplinkCapacity": 100,
"downlinkCapacity": 100,
"congestion": true, //启用拥塞控制
"seed": "60VoqhfjP79nBQyU" //修改为自己的混淆密码
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
]
}
}
],
"routing": {
"rules": [
{
"type": "field",
"protocol": [
"bittorrent"
],
"outboundTag": "blocked"
}
]
},
"outbounds": [
{
"protocol": "freedom",
"settings": {}
},
{
"tag": "blocked",
"protocol": "blackhole",
"settings": {}
}
]
}