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
|
{
"/api": {
"target": "https://portal-ui.example.com/api",
"secure": false,
"changeOrigin": true,
"pathRewrite": {
"^/api": ""
}
},
"/mock-api": {
"target": "https://portal-ui.example.com/mock-api",
"secure": false,
"changeOrigin": true,
"pathRewrite": {
"^/mock-api": ""
}
},
"/keycloak": {
"target": "https://keycloak-ui.example.com",
"secure": false,
"changeOrigin": true,
"pathRewrite": {
"^/keycloak": ""
}
},
"/onap_logging": {
"target": "https://portal-ui.onap.example.com/onap_logging",
"secure": false,
"changeOrigin": true
}
}
|