$config['auth_ldap_binddn'] = "cn=ldapproxy,cn=Users,dc=domain,dc=ca";
$config['auth_ldap_bindpw'] = "password";
$config['auth_ldap_attr']['uid'] = "sAMAccountName";
$config['auth_ldap_attr']['uidNumber'] = "objectSid";
$config['auth_ldap_attr']['cn'] = "name";
$config['auth_ldap_attr']['dn'] = "distinguishedname";
$config['auth_ldap_objectclass'] = "person";
$config['auth_ldap_version'] = 3;
$config['auth_ldap_port'] = 389;
$config['auth_ldap_starttls'] = FALSE;
$config['auth_ldap_prefix'] = "CN=";
$config['auth_ldap_suffix'] = ",DC=domain,DC=ca";
$config['auth_ldap_group'] = array("CN=Domain Admins,OU=Users,DC=domain,DC=ca");
$config['auth_ldap_groupbase'] = "OU=Users,DC=domain,DC=ca";
$config['auth_ldap_groupmembertype'] = "fulldn";
$config['auth_ldap_groupmemberattr'] = "member";
unset($config['auth_ldap_groups']);
$config['auth_ldap_groups']['CN=Domain Admins,OU=Users,DC=domain,DC=Ca']['level'] = 10;
$config['auth_ldap_groups']['CN=Domain Users,OU=Users,DC=domain,DC=Ca']['level'] = 1;
Is there a log somewhere that shows whats happening?
Also I am unable to start httpd on centos7 with these virtual host settings as per the installation manual:
<VirtualHost *>
DocumentRoot /opt/observium/html/
CustomLog /opt/observium/logs/access_log combined
ErrorLog /opt/observium/logs/error_log
<Directory "/opt/observium/html/">
AllowOverride All
Options FollowSymLinks MultiViews
Require all granted
</Directory>
</VirtualHost>
Thee customlog and errorlog lines have to be commented out for the server to start. Can anyone verify that those log settings work on centos7? Perhaps I have some kind of rights issues with the files?
Thanks,
Dan.