Donner Accès au dossier(s) avec authentification LDAP pour certaines unités d'organisation avec Apache?

Je veux faire un annuaire web protectde par htaccess et des utilisateurs LDAP dans certaines de OU peuvent y accéder.

J'ai cherché toute la journée et je ne pouvais pas y arriver. J'ai à l'aide d'Apache 2.2 sur Ubuntu Server 10.04 LTS. Voici mon htaccess:

AuthType Basic
AuthName "LOGIN"
AuthUserFile /dev/null
AuthBasicProvider ldap
AuthzLDAPAuthoritative on
AuthLDAPURL "ldap://SERVER_IP/ou=users,dc=domain,dc=TLD,dc=ccTLD?uid?sub?(objectClass=*)"
AuthLDAPBindDN "cn=user,dc=domain,dc=TLD,dc=ccTLD"
AuthLDAPBindPassword passwd

#I've tried all of below:


#Require valid-user # This works just fine. But i don't want everyone can login.

#Require ldap-group ou=couldLogIn,ou=users,dc=domain,dc=TLD,dc=ccTLD # Tried this one and failed.

Require ldap-filter (ou=couldLogIn,ou=users,dc=domain,dc=TLD,dc=ccTLD)  # tried this one and also failed.

Merci beaucoup.