-
Notifications
You must be signed in to change notification settings - Fork 62
/
proxy.conf.json
45 lines (44 loc) · 1.05 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
{
"/v1beta": {
"target": "http://192.168.56.102:50040",
"secure": false,
"logLevel" : "debug"
},
"/orch" : {
"target": "http://192.168.56.102:5000",
"secure": false,
"logLevel" : "debug",
"changeOrigin" : true,
"pathRewrite" : {
"^/orch/" : "/v1beta/"
}
},
"/v1": {
"target": "http://192.168.56.102:8089",
"secure": false,
"logLevel" : "debug"
},
"/resource-monitor" : {
"target": "http://192.168.56.107:8190",
"secure": false,
"logLevel" : "debug",
"changeOrigin" : true,
"pathRewrite" : {
"^/resource-monitor/" : "/v1/"
}
},
"/s3": {
"target": "http://192.168.56.102:8090",
"secure": false,
"logLevel" : "debug",
"changeOrigin" : true,
"pathRewrite" : {
"^/s3/" : "/"
}
},
"/v3": {
"target": "http://192.168.56.102/identity",
"secure": false,
"logLevel" : "debug"
}
}