From 8ee00eaf19f55364289d097b593b14d7475b1675 Mon Sep 17 00:00:00 2001 From: apuente Date: Wed, 9 Oct 2024 16:55:27 +0200 Subject: [PATCH] refs #909 New dockerfile ssl --- ogWebconsole/.env | 2 +- ogWebconsole/dockerfile | 2 +- .../edit-organizational-unit.component.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ogWebconsole/.env b/ogWebconsole/.env index 100978f..72796c1 100644 --- a/ogWebconsole/.env +++ b/ogWebconsole/.env @@ -1 +1 @@ -NG_APP_BASE_API_URL=https://127.0.0.1:8443 \ No newline at end of file +NG_APP_BASE_API_URL=https://127.0.0.1:8444 \ No newline at end of file diff --git a/ogWebconsole/dockerfile b/ogWebconsole/dockerfile index 47594cb..5611da3 100644 --- a/ogWebconsole/dockerfile +++ b/ogWebconsole/dockerfile @@ -11,4 +11,4 @@ RUN npm install EXPOSE 4200 -CMD ["ng", "serve", "--host", "0.0.0.0", "--disable-host-check"] \ No newline at end of file +CMD ["ng", "serve", "--ssl","--host", "0.0.0.0", "--disable-host-check"] \ No newline at end of file diff --git a/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts b/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts index cb9f3f7..c7b5607 100644 --- a/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts +++ b/ogWebconsole/src/app/components/groups/shared/organizational-units/edit-organizational-unit/edit-organizational-unit.component.ts @@ -209,6 +209,7 @@ export class EditOrganizationalUnitComponent implements OnInit { const putUrl = `${this.baseUrl}/organizational-units/${this.data.uuid}`; const headers = new HttpHeaders({ 'Content-Type': 'application/json' }); + console.log('PUT URLLLLL:', formData); this.http.put(putUrl, formData, { headers }).subscribe( response => { console.log('PUT successful:', response);