You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For LDAP server that used self-signed certificates and demanded TLS client verification,dex should load self-signed certificates for client.
This is my solution.
add clientCA & clientKey config.
// Path to a trusted root certificate file.RootCAstring`json:"rootCA"`// Path to a client cert file generated by rootCA.ClientCertstring`json:"clientCert"`// Path to a client private key file generated by rootCA.ClientKeystring`json:"clientKey"`// Base64 encoded PEM data containing root CAs.RootCAData []byte`json:"rootCAData"`
Used for LDAP server that used self-signed certificates (RootCA, server cert) and setting TLS verify client. In this case, dex should use the client certificates generated by the Ldap server RootCA.
Without the client certificates, dex all requests to ldap server will be rejected.
Uh oh!
There was an error while loading. Please reload this page.
For LDAP server that used self-signed certificates and demanded TLS client verification,dex should load self-signed certificates for client.
This is my solution.
The text was updated successfully, but these errors were encountered: