-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
42 lines (41 loc) · 740 Bytes
/
Copy pathserver.json
File metadata and controls
42 lines (41 loc) · 740 Bytes
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
{
"inbounds": [
{
"type": "vmess",
"tag": "in.vmess-quic",
"listen": "0.0.0.0",
"listen_port": 60606,
"users": [
{
"name": "miku",
"uuid": "e391ad23-972e-c31d-97df-026c6933ad42",
"alterId": 0
}
],
"tls": {
"enabled": true,
"certificate_path": "server.crt",
"key_path": "server.key"
},
"transport": {
"type": "quic"
},
"multiplex": {}
}
],
"outbounds": [
{
"type": "direct",
"tag": "out.direct"
}
],
"route": {
"auto_detect_interface": true,
"rules": [
{
"inbound": "in.vmess-quic",
"outbound": "out.direct"
}
]
}
}