Closed geekingfrog closed 1 week ago
The discovery endpoint for OAuth is not returning the correct values for local development.
curl http://localhost:4000/.well-known/oauth-authorization-server returns (irrelevant fields omitted):
curl http://localhost:4000/.well-known/oauth-authorization-server
{ "issuer": "https://beyondallreason.info", "authorization_endpoint": "https://beyondallreason.info/oauth/authorize", "token_endpoint": "https://beyondallreason.info/oauth/token", }
none of these URL work locally and should instead be http://localhost:4000/…
http://localhost:4000/…
To make this work, adding new env var is an option, but in this case, make sure to also update the ansible templates.
Describe the Feature
The discovery endpoint for OAuth is not returning the correct values for local development.
Expected Behavior
curl http://localhost:4000/.well-known/oauth-authorization-server
returns (irrelevant fields omitted):none of these URL work locally and should instead be
http://localhost:4000/…
To make this work, adding new env var is an option, but in this case, make sure to also update the ansible templates.