From 3279252ed9486398498d8eca2597e8312992e97a Mon Sep 17 00:00:00 2001 From: Helmut Hutzler <helmut.hutzler@th-nuernberg.de> Date: Fri, 18 Nov 2022 10:44:30 +0100 Subject: [PATCH] Updated apiUrl/keycloakUrl for production version --- src/environments/environment.prod.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index a571715..5398a6b 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -2,9 +2,10 @@ declare const require: any; export const environment = { production: true, - //keycloakURL: 'https://kube-master-h1.informatik.fh-nuernberg.de:/auth/', - keycloakURL: 'https://kube-master-h1.informatik.fh-nuernberg.de/auth/', - apiURL: 'https://kube-master-h1.informatik.fh-nuernberg.de/api', + //keycloakURL: 'https://kube-master-h1.informatik.fh-nuernberg.de/auth/', + //apiURL: 'https://kube-master-h1.informatik.fh-nuernberg.de/api', + keycloakURL: '/auth/', + apiURL: '/api', appVersion: require('../../package.json').version }; -- GitLab