We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent21402c7 commit29c7d1cCopy full SHA for 29c7d1c
coderd/coderd.go
@@ -949,8 +949,10 @@ func New(options *Options) *API {
949
950
// OAuth2 metadata endpoint for RFC 8414 discovery
951
r.Get("/.well-known/oauth-authorization-server",api.oauth2AuthorizationServerMetadata())
952
+r.Get("/.well-known/oauth-authorization-server/*",api.oauth2AuthorizationServerMetadata())
953
// OAuth2 protected resource metadata endpoint for RFC 9728 discovery
954
r.Get("/.well-known/oauth-protected-resource",api.oauth2ProtectedResourceMetadata())
955
+r.Get("/.well-known/oauth-protected-resource/*",api.oauth2ProtectedResourceMetadata())
956
957
// OAuth2 linking routes do not make sense under the /api/v2 path. These are
958
// for an external application to use Coder as an OAuth2 provider, not for