Fix sample config docs error (#7581)
'client_auth_method' commented out value was erronously 'client_auth_basic', when code and docstring says it should be 'client_secret_basic'. Signed-off-by: Jason Robinson <jasonr@matrix.org>release-v1.14.0
parent
d7d8a2e7ee
commit
4be968d05d
|
@ -0,0 +1 @@
|
|||
Fix OIDC client_auth_method commented out value in sample config.
|
|
@ -1546,7 +1546,7 @@ oidc_config:
|
|||
# auth method to use when exchanging the token.
|
||||
# Valid values are "client_secret_basic" (default), "client_secret_post" and "none".
|
||||
#
|
||||
#client_auth_method: "client_auth_basic"
|
||||
#client_auth_method: "client_secret_basic"
|
||||
|
||||
# list of scopes to ask. This should include the "openid" scope. Defaults to ["openid"].
|
||||
#
|
||||
|
|
|
@ -112,7 +112,7 @@ class OIDCConfig(Config):
|
|||
# auth method to use when exchanging the token.
|
||||
# Valid values are "client_secret_basic" (default), "client_secret_post" and "none".
|
||||
#
|
||||
#client_auth_method: "client_auth_basic"
|
||||
#client_auth_method: "client_secret_basic"
|
||||
|
||||
# list of scopes to ask. This should include the "openid" scope. Defaults to ["openid"].
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue