mirror of
https://github.com/grafana/grafana.git
synced 2024-12-27 09:21:35 -06:00
Rename the setting and add description
This commit is contained in:
parent
08c12313fe
commit
3aa24b3afa
@ -335,7 +335,7 @@ tls_skip_verify_insecure = false
|
||||
tls_client_cert =
|
||||
tls_client_key =
|
||||
tls_client_ca =
|
||||
broken_auth_header_provider = false
|
||||
send_client_credentials_via_post = false
|
||||
|
||||
#################################### Basic Auth ##########################
|
||||
[auth.basic]
|
||||
|
@ -283,7 +283,10 @@ log_queries =
|
||||
;tls_client_cert =
|
||||
;tls_client_key =
|
||||
;tls_client_ca =
|
||||
;broken_auth_header_provider = false
|
||||
|
||||
; Set to true to enable sending client_id and client_secret via POST body instead of Basic authentication HTTP header
|
||||
; This might be required if the OAuth provider is not RFC6749 compliant, only supporting credentials passed via POST payload
|
||||
;send_client_credentials_via_post = false
|
||||
|
||||
#################################### Grafana.com Auth ####################
|
||||
[auth.grafana_com]
|
||||
|
@ -79,7 +79,7 @@ func NewOAuthService() {
|
||||
TlsClientKey: sec.Key("tls_client_key").String(),
|
||||
TlsClientCa: sec.Key("tls_client_ca").String(),
|
||||
TlsSkipVerify: sec.Key("tls_skip_verify_insecure").MustBool(),
|
||||
BrokenAuthHeaderProvider: sec.Key("broken_auth_header_provider").MustBool(),
|
||||
BrokenAuthHeaderProvider: sec.Key("send_client_credentials_via_post").MustBool(),
|
||||
}
|
||||
|
||||
if !info.Enabled {
|
||||
|
Loading…
Reference in New Issue
Block a user