ssl_skip_verify
This commit is contained in:
parent
a958475d83
commit
882bf2f523
2 changed files with 4 additions and 2 deletions
|
@ -14,7 +14,7 @@ use_ssl = {{ ldap_params.use_ssl|lower }}
|
||||||
# Set to true if connect ldap server with STARTTLS pattern (create connection in insecure, then upgrade to secure connection with TLS)
|
# Set to true if connect ldap server with STARTTLS pattern (create connection in insecure, then upgrade to secure connection with TLS)
|
||||||
start_tls = false
|
start_tls = false
|
||||||
# set to true if you want to skip ssl cert validation
|
# set to true if you want to skip ssl cert validation
|
||||||
ssl_skip_verify = false
|
ssl_skip_verify = {{ ldap_params.ssl_skip_verify }}
|
||||||
# set to the path to your root CA certificate or leave unset to use system defaults
|
# 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 = /path/to/certificate.crt
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@ Debian:
|
||||||
host: '127.0.0.1'
|
host: '127.0.0.1'
|
||||||
port: 389
|
port: 389
|
||||||
use_ssl: false
|
use_ssl: false
|
||||||
|
ssl_skip_verify: false
|
||||||
bind_dn: "cn=admin,dc=grafana,dc=org"
|
bind_dn: "cn=admin,dc=grafana,dc=org"
|
||||||
bind_password: "grafana"
|
bind_password: "grafana"
|
||||||
user_search_filter: "(cn=%s)"
|
user_search_filter: "(cn=%s)"
|
||||||
|
@ -71,6 +72,7 @@ RedHat:
|
||||||
host: '127.0.0.1'
|
host: '127.0.0.1'
|
||||||
port: 389
|
port: 389
|
||||||
use_ssl: false
|
use_ssl: false
|
||||||
|
ssl_skip_verify: false
|
||||||
bind_dn: "cn=admin,dc=grafana,dc=org"
|
bind_dn: "cn=admin,dc=grafana,dc=org"
|
||||||
bind_password: "grafana"
|
bind_password: "grafana"
|
||||||
user_search_filter: "(cn=%s)"
|
user_search_filter: "(cn=%s)"
|
||||||
|
|
Loading…
Reference in a new issue