From 967282e47ba888235a30b90c24438ea58302f55b Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Mon, 10 Aug 2026 12:37:31 +0200 Subject: [PATCH] docs: unescape quotes in the new-client-auth-jwt-type row The escaping came from the Go flag string and has no meaning in Markdown. --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 9cad7f1..0634b59 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -38,7 +38,7 @@ The following flags are available: | `openid.client-secret` | string | | Client secret for the OpenID client. Overridden by `openid.client-jwk`, if configured. | | `openid.domain-hint` | string | | Domain hint to include in authorization request for IdPs that support this parameter (e.g. Entra ID). | | `openid.jwks-fallback-alg` | string | `RS256` | JWA value (as defined in RFC 7518) to assign to provider JWKS keys when their `alg` header is not set. | -| `openid.new-client-auth-jwt-type` | bool | `false` | When enabled, sets the value of the \"typ\" header of the JWT used for client authentication equal to "client-authentication+jwt" in accordance with RFC7523bis. If not enabled, the value is set to "JWT". | +| `openid.new-client-auth-jwt-type` | bool | `false` | When enabled, sets the value of the "typ" header of the JWT used for client authentication equal to "client-authentication+jwt" in accordance with RFC7523bis. If not enabled, the value is set to "JWT". | | `openid.post-logout-redirect-uri` | string | | URI for redirecting the user after successful logout at the Identity Provider. | | `openid.provider` | string | `openid` | Provider configuration to load and use, either `openid`, `azure`, `idporten`. | | `openid.resource-indicator` | string | | OAuth2 resource indicator to include in authorization request for acquiring audience-restricted tokens. |