diff options
author | Patrick Brady <patrick.brady@att.com> | 2019-03-20 15:30:02 -0700 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-03-20 15:30:07 -0700 |
commit | 6626192a480fcfc9024b8366e5a5ebec61389dbf (patch) | |
tree | 695bbca7f4195157e880449f6c675419f840e7f8 /src/environments | |
parent | c63fafc2383afc4422b4af458639316eaf63c0fe (diff) |
Changes for cdt over https
Configure Spring to use an https endpoint
Add sample certificates for https
Set cdt to use an https url to communicate to the proxy
Change-Id: Iaeee33d50c0e9ceb53226982639c289e757763a4
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1551
Diffstat (limited to 'src/environments')
-rw-r--r-- | src/environments/environment.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 6c6dcf8..fdf4c89 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -35,9 +35,9 @@ export const environment = { checkTestStatus: 'http://' + window.location.hostname + ':8282/restconf/operations/appc-provider-lcm:action-status' */ // APIs for CORS proxy Service. - getDesigns: 'http://' + window.location.hostname + ':30290/cdtService/getDesigns', - validateTemplate: 'http://' + window.location.hostname + ':30290/cdtService/validateTemplate', - testVnf: 'http://' + window.location.hostname + ':30290/cdtService/testVnf', - checkTestStatus: 'http://' + window.location.hostname + ':30290/cdtService/checkTestStatus' + getDesigns: 'https://' + window.location.hostname + ':30290/cdtService/getDesigns', + validateTemplate: 'https://' + window.location.hostname + ':30290/cdtService/validateTemplate', + testVnf: 'https://' + window.location.hostname + ':30290/cdtService/testVnf', + checkTestStatus: 'https://' + window.location.hostname + ':30290/cdtService/checkTestStatus' };
\ No newline at end of file |