|
@@ -21,11 +21,11 @@ module.exports = {
|
|
|
'^/contracts': '/contracts',
|
|
|
xfwd: true
|
|
|
},
|
|
|
- '/student-server': {
|
|
|
+ '/api-student': {
|
|
|
target: targetUrl,
|
|
|
changeOrigin: true,
|
|
|
ws: true,
|
|
|
- '^/student-server': '/student-server',
|
|
|
+ '^/api-student': '/api-student',
|
|
|
xfwd: true
|
|
|
},
|
|
|
'/api-cms': {
|
|
@@ -35,18 +35,18 @@ module.exports = {
|
|
|
'^/api-cms': '/api-cms',
|
|
|
xfwd: true
|
|
|
},
|
|
|
- '/teacher-server': {
|
|
|
+ '/api-teacher': {
|
|
|
target: targetUrl,
|
|
|
changeOrigin: true,
|
|
|
ws: true,
|
|
|
- '^/teacher-server': '/teacher-server',
|
|
|
+ '^/api-teacher': '/api-teacher',
|
|
|
xfwd: true
|
|
|
},
|
|
|
- '/web-server': {
|
|
|
+ '/api-web': {
|
|
|
target: targetUrl,
|
|
|
changeOrigin: true,
|
|
|
ws: true,
|
|
|
- '^/web-server': '/web-server',
|
|
|
+ '^/api-web': '/api-web',
|
|
|
xfwd: true
|
|
|
}
|
|
|
}, // string | Object
|