From fafaecaa29baf31fef6e706c6a8ca59653708169 Mon Sep 17 00:00:00 2001 From: Manish Kumar Date: Mon, 7 Nov 2022 17:00:04 +0530 Subject: [PATCH] Update keycloak-config.service.ts In the latest version of keycloak, auth url has been changed to http://localhost:8180 from http://localhost:8180/auth --- example/src/config/keycloak-config.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/src/config/keycloak-config.service.ts b/example/src/config/keycloak-config.service.ts index 028d7f8..9f8f5e3 100644 --- a/example/src/config/keycloak-config.service.ts +++ b/example/src/config/keycloak-config.service.ts @@ -6,7 +6,7 @@ export class KeycloakConfigService implements KeycloakConnectOptionsFactory { createKeycloakConnectOptions(): KeycloakConnectOptions { return { - authServerUrl: 'http://localhost:8180/auth', + authServerUrl: 'http://localhost:8180', realm: 'nest-example', clientId: 'nest-api', secret: '05c1ff5e-f9ba-4622-98e3-c4c9d280546e',