First try to create a configuration file

This commit is contained in:
katagia 2003-02-12 09:22:42 +00:00
parent dd621e348b
commit 04b2a2c796
1 changed files with 29 additions and 0 deletions

29
lam/config/conf.php.dist Normal file
View File

@ -0,0 +1,29 @@
<?php
/*
* Lam Configuration File
*
* This file contains global configuration settings for lam. Values
* may be safely edited by hand. Use conf.php.dist as a reference.
*
* Strings should be enclosed in 'quotes'.
* Integers should be given literally (without quotes).
* Boolean values may be 'true' or 'false'.
*
*/
// IP or Name of the LDAP-Server which should be used
$conf['ldap']['server'] = 'ldap.example.com'
// LDAP-Port Normally 389, 636 if ssl is enabled
// If left empty the default values will be used
$conf['ldap']['port'] = '636'
// Should we use SSL to connect to the ldap-server?
$conf['ldap']['usessl'] = 'true'
// List of users with admin-right
// You also have to modify the ACL-List of your
// LDAP-Server
$conf['lam']['admin'] = array('root','admin',);
?>