From 858bad55ca0337544d89a2dd308986788309f8fc Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 22 Jun 2024 19:40:40 -0500 Subject: [PATCH] grafana: Trust dch-root-ca for LDAP connections The LDAP servers now use certificates signed by _DCH CA R2_, so the _DCH Root CA R2_ CA needs to be trusted in order to communicate with them. --- grafana/ldap.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana/ldap.toml b/grafana/ldap.toml index e1b3df7..779ca58 100644 --- a/grafana/ldap.toml +++ b/grafana/ldap.toml @@ -14,7 +14,7 @@ start_tls = true # set to true if you want to skip ssl cert validation ssl_skip_verify = false # set to the path to your root CA certificate or leave unset to use system defaults -# root_ca_cert = "/path/to/certificate.crt" +root_ca_cert = "/run/dch-ca/dch-root-ca.crt" # Authentication against LDAP servers requiring client certificates # client_cert = "/path/to/client.crt" # client_key = "/path/to/client.key"