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
78
79
80
81
82
83
|
{
"port": 9000,
"proxyCatalogTarget": null,
"proxyWebsocketTarget": null,
"proxyTarget": null,
"cookie": {
"junctionName": "IV_JCT",
"prefix": "AMWEBJCT!",
"userIdSuffix": "USER_ID",
"userFirstName": "HTTP_CSP_FIRSTNAME",
"userLastName": "HTTP_CSP_LASTNAME",
"userEmail": "HTTP_CSP_EMAIL",
"xEcompRequestId": " X-ECOMP-RequestID",
"portalCookie": "EPService"
},
"env": {
"role": "designer"
},
"userTypes": {
"admin": {
"userId": "jh0003",
"email": "mail@gmail.com",
"firstName": "Jimmy",
"lastName": "Hendrix",
"xEcompRequestId": "ccccc"
},
"designer": {
"userId": "cs0008",
"email": "designer@sdc.com",
"firstName": "Carlos",
"lastName": "Santana",
"xEcompRequestId": "ccccc"
}
},
"proxyConfig" : {
"urlReplaceRules" : [
{
"url" : "/proxy-designer1",
"replace" : "/proxy-designer1",
"with" : ""
},
{
"url" : "/onboarding/resources",
"replace" : "/onboarding",
"with" : ""
}
],
"jsReplaceRules" : [
{
"replace" : "/onboarding/punch-outs_en.js",
"with" : "/onboarding/punch-outs.js"
}
],
"appContextPath" : "/onboarding",
"redirectionPath" : "sdc1#/onboardVendor",
"onboardingProxy" : {
"rewrite" : {
"/sdc1/feProxy/onboarding-api": "/onboarding-api"
},
"proxy" : [
"/api",
"/onboarding-api",
"/sdc1/feProxy/onboarding-api"
]
},
"catalogProxy" : {
"rewrite" : {
"/sdc1/feProxy/onboarding-api": "/sdc1/feProxy/onboarding-api",
"/onboarding-api": "/sdc1/feProxy/onboarding-api"
},
"proxy" : [
"/sdc1",
"/onboarding-api",
"/scripts",
"/styles"
]
},
"websocketProxy" : {
"proxy" : ["/notification-api"],
"enabled" : false
}
}
}
|