summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/devConfig.defaults.json
diff options
context:
space:
mode:
authorilanap <ilanap@amdocs.com>2021-01-17 17:09:35 +0200
committerChristophe Closset <christophe.closset@intl.att.com>2021-01-22 12:32:32 +0000
commit1d8517d50cef8b6e115748541a927227fe06500f (patch)
treee0fe8b79e889c43dcf415ecff28c0303d60128b2 /openecomp-ui/devConfig.defaults.json
parent7c2593303b78cf8df66134d60af7a0efc54e4f13 (diff)
Fixes for proxy server for onboarding UI
Issue-ID: SDC-3436 Signed-off-by: ilanap <ilanap@amdocs.com> Change-Id: Ie7b83b1a6ad0decdea849f7848f7ffd5af05ce23
Diffstat (limited to 'openecomp-ui/devConfig.defaults.json')
-rw-r--r--openecomp-ui/devConfig.defaults.json89
1 files changed, 73 insertions, 16 deletions
diff --git a/openecomp-ui/devConfig.defaults.json b/openecomp-ui/devConfig.defaults.json
index bd86213587..7f89909059 100644
--- a/openecomp-ui/devConfig.defaults.json
+++ b/openecomp-ui/devConfig.defaults.json
@@ -3,24 +3,81 @@
"proxyCatalogTarget": null,
"proxyWebsocketTarget": null,
"proxyTarget": null,
- "proxyConfig": {
- "cookies": null,
- "cookiesReplaceRules": [],
- "urlReplaceRules": [],
- "jsReplaceRules": [],
- "appContextPath": null,
- "login": null,
- "redirectionPath": null,
- "onboardingProxy": {
- "rewrite": null,
- "proxy": []
+ "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"
},
- "catalogProxy": {
- "rewrite": null,
- "proxy": []
+ "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": []
+ "websocketProxy" : {
+ "proxy" : ["/notification-api"],
+ "enabled" : false
}
}
}