-
Notifications
You must be signed in to change notification settings - Fork 161
/
proxy.conf.json
77 lines (77 loc) · 1.5 KB
/
proxy.conf.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
{
"/koko/elfinder/*": {
"target": "http://localhost:5000",
"secure": false,
"ws": true,
"changeOrigin": true
},
"/koko/k8s/*": {
"target": "http://localhost:5000",
"secure": false,
"ws": true,
"changeOrigin": true
},
"/koko/static/*": {
"target": "http://localhost:5000",
"secure": false,
"ws": true
},
"/koko/*": {
"target": "http://localhost:5000",
"secure": false,
"ws": true,
"changeOrigin": true
},
"/media/": {
"target": "http://localhost:8080",
"secure": false,
"changeOrigin": true
},
"/api/": {
"target": "http://localhost:8080",
"secure": false,
"changeOrigin": true
},
"/ws/": {
"target": "ws://localhost:8080",
"secure": false,
"changeOrigin": true,
"ws": true
},
"/core": {
"target": "http://localhost:8080",
"secure": false,
"changeOrigin": true
},
"/static": {
"target": "http://localhost:8080",
"secure": false,
"changeOrigin": true
},
"/lion": {
"target": "http://localhost:9529",
"secure": false,
"pathRewrite": {
"^/lion/monitor": "/monitor"
},
"ws": true,
"changeOrigin": true
},
"/chen": {
"target": "http://localhost:9523",
"secure": false,
"ws": true,
"changeOrigin": true
},
"/kael": {
"target": "http://localhost:5173",
"secure": false,
"ws": true,
"changeOrigin": true
},
"/ui/": {
"target": "http://localhost:9528",
"secure": false,
"changeOrigin": true
}
}