forked from hakimi-x/Orange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
139 lines (138 loc) · 4.48 KB
/
config.json
File metadata and controls
139 lines (138 loc) · 4.48 KB
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
{
"panels": {
"mihomo": [
{
"url": "https://api.example1.com",
"description": "自动生成的域名 - wujie"
},
{
"url": "https://xxx.xxx.xxx.1:8888",
"description": "服务器1-应用"
},
{
"url": "https://xxx.xxx.xxx.2:8888",
"description": "服务器2-ecs"
},
{
"url": "https://xxx.xxx.xxx.3:8888",
"description": "服务器3-ecs"
}
]
},
"proxy": [
{
"url": "username:password@proxy.example.com:38769",
"description": "代理服务器1",
"protocol": "http"
},
{
"url": "username:password@proxy.example.com:38769",
"description": "备用代理服务器",
"protocol": "http"
}
],
"ws": [
{
"url": "wss://ws.example.com/ws/",
"description": "WebSocket服务器1"
},
{
"url": "wss://ws01.example.com/ws/",
"description": "备用ws服务器"
}
],
"update": [
{
"url": "https://update.example.com",
"description": "更新服务器1"
},
{
"url": "https://update01.example.com",
"description": "备用更新服务器"
}
],
"onlineSupport": [
{
"url": "https://chat.example.com",
"description": "在线客服API服务",
"apiBaseUrl": "https://chat.example.com",
"wsBaseUrl": "wss://chat.example.com"
}
],
"subscription": {
"urls": [
{
"url": "https://www.example-sub1.com",
"description": "reverse",
"endpoints": {
"v2": {
"path": "/api/v2/subscription-encrypt/{token}",
"requiresToken": true,
"method": "GET",
"description": "V2 加密订阅接口,token在路径中"
}
}
},
{
"url": "https://www.example-sub1.com/v2",
"description": "v2word",
"endpoints": {
"v2": {
"path": "/api/v2/subscription-encrypt/{token}",
"requiresToken": true,
"method": "GET",
"description": "V2 加密订阅接口,token在路径中"
}
}
},
{
"url": "https://api.example-origin.com",
"description": "origin",
"endpoints": {
"v2": {
"path": "/api/v2/subscription-encrypt/{token}",
"requiresToken": true,
"method": "GET",
"description": "V2 加密订阅接口,token在路径中"
}
}
},
{
"url": "http://xxx.xxx.xxx.3:7880",
"description": "服务器3-ecs",
"endpoints": {
"v2": {
"path": "/api/v2/subscription-encrypt/{token}",
"requiresToken": true,
"method": "GET",
"description": "V2 加密订阅接口,token在路径中"
}
}
},
{
"url": "http://xxx.xxx.xxx.2:7881",
"description": "服务器2-ecs",
"endpoints": {
"v2": {
"path": "/api/v2/subscription-encrypt/{token}",
"requiresToken": true,
"method": "GET",
"description": "V2 加密订阅接口,token在路径中"
}
}
},
{
"url": "http://xxx.xxx.xxx.1:7880",
"description": "服务器1-应用",
"endpoints": {
"v2": {
"path": "/api/v2/subscription-encrypt/{token}",
"requiresToken": true,
"method": "GET",
"description": "V2 加密订阅接口,token在路径中"
}
}
}
]
}
}