--- docman.conf 2001/06/20 10:31:42 1.2 +++ docman.conf 2002/02/15 09:54:25 1.9 @@ -13,6 +13,9 @@ // from where to include auth_*.php modules? // $gblIncDir = "/home/httpd/docman"; + // do we want to force download? (leave it at 1) + $gblForceDownload = 1; + // username/password should not be system // usernames/passwords !! @@ -57,18 +60,36 @@ // $gblImages = array( ".jpg",".jpeg",".gif",".png",".ico", // ".bmp",".xbm") ; + // which files to hide (separated by ,) +// $gblHide = "index.php,hideme.txt"; + // $gblFilePerms = 0640 ; // default for new files // $gblDirPerms = 0750 ; // default for new dirs // Where are users stored? // default is to user .htusers file -// $gblUsers = "htusers_file"; + $gblUsers = "htusers_file"; // use sql handler - $gblUsers = "htusers_sql"; +// $gblUsers = "htusers_sql"; // this are options if you use htusers_sql (there are no default // in docman.php, so you have to use docman.conf file and enter // data here -// $dbi = "pgsql:db:user:password" +// $dbi = "pgsql:db:user:password"; // $dbi_sql = "select login,full_name,password,email from users"; + // htusers_ldap options: needs the following lines filled in +// $gblUsers = "htusers_ldap"; +// $ldapServer = "x.x.x.x"; // dotted notation or a FQDN +// $ldapServerPort = "389"; // default port +// $basedn = "o=CompanyName"; // branch of tree to start search +// $bind="cn=Manager, o=CompanyName"; // login for password searching +// $bindpw=""; // password for the above account + + // htusers_union options: use more than one htusers method +// $gblUsers = "htusers_union"; +// $htusers_union[]="htusers_header"; +// $htusers_union[]="htusers_sql"; +// $htusers_union[]="htusers_file"; + +?>