[users@httpd] How to allow a directory and don't allow a sub-directory?

2014-07-22 Thread Mark jensen
I want to allow a directory /var/www/html/ldap to two users according to IPs (192.168.1.2 192.168.1.7): Directory /var/www/html/ldap Order allow,deny Allow from 192.168.1.2 192.168.1.7 Satisfy any AuthName LDAP Authentication AuthType Basic AuthBasicProvider

Re: [users@httpd] How to allow a directory and don't allow a sub-directory?

2014-07-22 Thread Eric Covener
On Tue, Jul 22, 2014 at 11:20 AM, Mark jensen ngiw2...@hotmail.com wrote: Satisfy any satisfy all? -- Eric Covener cove...@gmail.com - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands,

RE: [users@httpd] How to allow a directory and don't allow a sub-directory?

2014-07-22 Thread Mark jensen
but this will ask for authentication,I don't want to be asked for authentication on both 192.168.1.2 and 192.168.1.7

Re: [users@httpd] How to allow a directory and don't allow a sub-directory?

2014-07-22 Thread Peter Kühnlein
Am 22.07.2014 17:20, schrieb Mark jensen: I have tried to add: Directory /var/www/html/ldap//manager Order allow,deny Allow from 192.168.1.2 Satisfy any AuthName LDAP Authentication AuthType Basic AuthBasicProvider ldap AuthzLDAPauthoritative off

RE: [users@httpd] How to allow a directory and don't allow a sub-directory?

2014-07-22 Thread Mark jensen
Thanks for your reply but I want a dynamic solution, this is a static solution