blob: 11dedb0f0a1eed2739c02b9fbdd081826b14995a (
plain)
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
|
// proxy routers setting
module.exports =
{
//text interface
"/user/login/:user/test": "/user/login?user=:user",
"/pnf/:cloudnode/p-interfaces/p-interface/:interface-name/createTerminationPoint":
"/status",
"/alarm/form/data": "/alarm_form_data",
"/upload/:url_upId": "/status",
///////////////
///////<-------------home services--------->/////
"/portal-auxapi/languageSetting/user/:currentloginId": "/language",
/////////////////////////
///////<-------------managemence services--------->/////
/////////////////////////
///////<-------------myhttp services--------->/////
/////////////////////////
///////<-------------networkhttp services--------->/////
/////////////////////////
///////<-------------onboard services--------->/////
/////////////////////////
///////<-------------general interface--------->/////
"/api/*": "/$1",
"/*/*": "/$1_$2",
"/*/*/*": "/$1_$2_$3",
"/*/*/*/*": "/$1_$2_$3_$4",
/////////////////////////
}
|