From 010eec22d34b866bdef3650d5114a39a2b3e7038 Mon Sep 17 00:00:00 2001 From: fengxsong Date: Mon, 22 Jul 2024 13:38:22 +0800 Subject: [PATCH] example_configs: fix dex integration Host and optional port of the LDAP server are in the form "host:port". --- example_configs/dex_config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/example_configs/dex_config.yml b/example_configs/dex_config.yml index 93bbf9c..a956760 100644 --- a/example_configs/dex_config.yml +++ b/example_configs/dex_config.yml @@ -10,8 +10,7 @@ connectors: id: ldap name: LDAP config: - host: lldap-host # make sure it does not start with `ldap://` - port: 3890 # or 6360 if you have ldaps enabled + host: lldap-host:3890 # or 6360 if you have ldaps enabled, make sure it does not start with `ldap://` insecureNoSSL: true # or false if you have ldaps enabled insecureSkipVerify: true # or false if you have ldaps enabled bindDN: uid=admin,ou=people,dc=example,dc=com # replace admin with your admin user