From 2edc624c017b4a55210b9db82b499f6dcbe63fb3 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Tue, 30 Apr 2024 12:28:19 -0600 Subject: [PATCH] Resetted the default IDP endpoint values --- internal/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/config.go b/internal/config.go index cb7bef1..9108ac1 100644 --- a/internal/config.go +++ b/internal/config.go @@ -80,9 +80,9 @@ func NewConfig() Config { Port: 3333, Issuer: server.IdentityProviderServer{ Endpoints: oidc.Endpoints{ - Authorization: "http://127.0.0.1/oauth/authorize", - Token: "http://127.0.0.1/oauth/token", - JwksUri: "http://127.0.0.1/.well-known/jwks.json", + Authorization: "", + Token: "", + JwksUri: "", }, }, },