免流服务端配置备忘

V2ray免流服务端配置备忘

感谢伟大的项目Project V
v2flay

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
{
"log": {
"loglevel": "warning"
},
"inbound": {
"protocol": "vmess",
"port": 443,
"settings": {
"clients": [{
"id": "替换uuid",
"alterId": 16,
"security": "aes-128-gcm"
}]
},
"streamSettings": {
"network": "tcp",
"tcpSettings": {
"header": {
"Host": ["免流host"],
"type": "http",
"response": {
"version": "1.1",
"status": "200",
"reason": "OK",
"headers": {
"Content-Type": ["application/octet-stream",
"application/x-msdownload",
"text/html",
"application/x-shockwave-flash"],
"Transfer-Encoding": ["chunked"],
"Connection": ["keep-alive"],
"Pragma": "no-cache"
}
}
}
}
}
},
"inboundDetour": [],
"outbound": {
"protocol": "freedom",
"settings": {}
}
}