Resetted the default IDP endpoint values

This commit is contained in:
David J. Allen 2024-04-30 12:28:19 -06:00
parent e940dc2dd9
commit 2edc624c01
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC

View file

@ -80,9 +80,9 @@ func NewConfig() Config {
Port: 3333, Port: 3333,
Issuer: server.IdentityProviderServer{ Issuer: server.IdentityProviderServer{
Endpoints: oidc.Endpoints{ Endpoints: oidc.Endpoints{
Authorization: "http://127.0.0.1/oauth/authorize", Authorization: "",
Token: "http://127.0.0.1/oauth/token", Token: "",
JwksUri: "http://127.0.0.1/.well-known/jwks.json", JwksUri: "",
}, },
}, },
}, },