If you have mod_ldap as authentication method, the the following .htaccess file installed in the cgi-bin directory is doing exactly what you need (after tunning it to your company settings)
Mine (on a Mandriva 2005LE using apache2-mod_ldap-2.0.53-9.1.102mdk) looks like this but your's may be a little bit different. ----------8<----------8<----------8<----------8<----------8<---------- AuthType Basic AuthName "Ldap Password" AuthLDAPEnabled on AuthLDAPRemoteUserIsDN off AuthLDAPUrl ldap://ldap.mycompany.com:389/ou=org,dc=example,dc=com?uid AuthLDAPAuthoritative off require valid-user ----------8<----------8<----------8<----------8<----------8<---------- On redhat the module is mod_authz_ldap-0.22-5 And the config could be ----------8<----------8<----------8<----------8<----------8<---------- AuthzLDAPEngine on AuthzLDAPServer ids.mot.com:389 AuthzLDAPUserBase ou=org,dc=example,dc=com AuthzLDAPUserKey uid AuthzLDAPUserScope onelevel AuthzLDAPSetAuthorization off AuthType basic AuthName "Ldap password" require valid-user ----------8<----------8<----------8<----------8<----------8<---------- Regards. Olivier. Le Mercredi 24 Août 2005 19:34, Tomi a écrit : > is there any way for a backuppc 'normal user' to access the web > interface and have only access to their host config site ?? or do I have > to manually configure it on the apache server ? > > many thanx > > P.D: I´ll appreciate any suggestions/comments on how to do it > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf > _______________________________________________ > BackupPC-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/backuppc-users > http://backuppc.sourceforge.net/ -- POPI: MGBU -- Olivier LAHAYE CRM IT lab manager Saclay, FRANCE ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ BackupPC-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/backuppc-users http://backuppc.sourceforge.net/
