-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig
51 lines (41 loc) · 1023 Bytes
/
config
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
[base]
port = 10000
# proxy execution order / 代理执行顺序
proxySort=["test0","test","serverstatusws","serverstatus"]
crt = "server.crts"
key = "server.key"
[proxy]
[proxy.test0]
path = "/"
target = "https://github.com"
httpAuth = ["admin"]
wsAuth = ["admin"]
[proxy.test]
path = "/"
target = "http://127.0.0.1:7002"
httpAuth = ["jay"]
wsAuth = ["jay"]
[proxy.serverstatusws]
path = "/"
target = "http://127.0.0.1:9900"
httpAuth = ["mi"]
wsAuth = ["mi"]
[proxy.serverstatus]
path = "/"
target = "http://127.0.0.1:6004"
httpAuth = ["tom"]
wsAuth = ["tom"]
[auth]
# account and password / 账号密码
[auth.tom]
account = "tom"
password = "123"
[auth.jay]
account = "jay"
password = "123"
[auth.mi]
account = "mi"
password = "123"
[auth.admin]
account = "admin"
password = "admin"