/etc/simpleid/ldap-filesystem.store.config.php is in simpleid-ldap 1.0.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?php
/**
* The LDAP server name and TCP port.
*
* LDAP_HOST can also contain a full LDAP URL, which is necessary
* when specifying that LDAPS should be used, e.g.
*
* define('LDAP_HOST', 'ldaps://ldap.example.org:636');
*
*/
define('LDAP_HOST', 'localhost');
define('LDAP_PORT', 389);
/**
* The LDAP base DN for the search
*/
define('LDAP_BASE_DN', 'dc=example,dc=org');
?>
|