Thanks for the advice, I was secretly hoping it was nativly implemented thought L

 

 


De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Envoyé : lundi 11 juillet 2005 15:53
À : users@httpd.apache.org
Objet : Re: [EMAIL PROTECTED] Apache, LDAP AUTH and directory access

 


Hello,

You might have to create containers for each user. e.g.: (Notice "require saqib" instead of "require valid-user"

<Directory /ftp/private/gael>
    Options MultiViews Indexes
    AuthType Basic
    AuthName "Private Zone"
    AuthLDAPUrl ldap://127.0.0.1:389/ou=users,ou=ftp,dc=test?uid?sub?
    AuthLDAPBindDN uid=avaliduidtologin,dc=test
    AuthLDAPBindPassword secret
    require gael
    <Limit GET POST>
            Order Deny,Allow
            Allow from All
    </Limit>
</Directory>

<Directory /ftp/private/saqib>
    Options MultiViews Indexes
    AuthType Basic
    AuthName "Private Zone"
    AuthLDAPUrl ldap://127.0.0.1:389/ou=users,ou=ftp,dc=test?uid?sub?
    AuthLDAPBindDN uid=avaliduidtologin,dc=test
    AuthLDAPBindPassword secret
    require saqib
    <Limit GET POST>
            Order Deny,Allow
            Allow from All
    </Limit>
</Directory>
... etc

Covalent < http://www.covalent.com >  provides mod_ftp < http://www.covalent.net/webinar/mod_ftp-Webinar.ppt > which does exactly what you are trying to do. And they make administration extremely easy through the use of a GUI. Take a look at that as well.

Thanks.
Saqib Ali
http://www.xml-dev.com/blog/


"Gael Mauleon" <[EMAIL PROTECTED]>
No Phone Info Available

07/11/2005 05:39 AM

Please respond to
users@httpd.apache.org

To

<users@httpd.apache.org>

cc

 

Subject

[EMAIL PROTECTED] Apache, LDAP AUTH and directory access

 

 

 



Reply via email to