From 091fede4b54fe49c64a82c762047c22c3b45c10f Mon Sep 17 00:00:00 2001 From: Bruce Schultz Date: Mon, 19 Aug 2024 08:58:37 +0200 Subject: [PATCH] docs(README): fix wrong example in README --- README.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.MD b/README.MD index f47add1..44c1e29 100644 --- a/README.MD +++ b/README.MD @@ -17,7 +17,7 @@ NUXT_OIDC_PROVIDERS_KEYCLOAK_CLIENT_ID="node-ui" NUXT_OIDC_PROVIDERS_KEYCLOAK_CLIENT_SECRET="someSecret" # The following need to be explicitly set in order to apply them to the Nuxt config, they can't be built from the domain -NUXT_OIDC_PROVIDERS_KEYCLOAK_REDIRECT_URI="https://my.keycloak.domain.de/auth/keycloak/callback" # Be sure this redirect URI is defined in your keycloak for this client +NUXT_OIDC_PROVIDERS_KEYCLOAK_REDIRECT_URI="http://localhost:3000/auth/keycloak/callback" # Be sure this redirect URI is defined in your keycloak for this client NUXT_OIDC_PROVIDERS_KEYCLOAK_AUTHORIZATION_URL="https://my.keycloak.domain.de/protocol/openid-connect/auth" NUXT_OIDC_PROVIDERS_KEYCLOAK_TOKEN_URL="https://my.keycloak.domain.de/protocol/openid-connect/token" NUXT_OIDC_PROVIDERS_KEYCLOAK_USERINFO_URL="https://my.keycloak.domain.de/protocol/openid-connect/userinfo"