From 2d6015d9ee28e72cd3009e1ff46cb32d7f9734fb Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Tue, 19 May 2020 11:33:29 +0200
Subject: [PATCH] Set real production URLs

The demo keycloak doesn't have the prod URL in the whitelist, so
this wont work anyway, just switch to the real one and wait until
keycloak is fixed
---
 rollup.config.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/rollup.config.js b/rollup.config.js
index 50cbe7a..04a753d 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -72,11 +72,11 @@ switch (build) {
     break;
   case 'production':
     basePath = '/';
-    entryPointURL = 'https://api-demo.tugraz.at';
-    keyCloakServer = 'auth-test.tugraz.at';
+    entryPointURL = 'https://api.tugraz.at';
+    keyCloakServer = 'auth.tugraz.at';
     keyCloakBaseURL = 'https://' + keyCloakServer + '/auth';
-    keyCloakClientId = 'ibib-demo_tugraz_at-IBIB';
-    pdfAsQualifiedlySigningServer = 'sig-test.tugraz.at';
+    keyCloakClientId = 'FIXME_CLIENTID';
+    pdfAsQualifiedlySigningServer = 'sig.tugraz.at';
     matomoSiteId = 130;
     break;
   case 'test':
-- 
GitLab