Re: [users@httpd] How to set a custom DNS to Apache?

2014-07-22 Thread Tom Evans
On Sun, Jul 20, 2014 at 10:18 PM, Mark jensen ngiw2...@hotmail.com wrote: I have read about Authoriztion in Apache: Require host example.org Require host .net example.edu This configuration will cause Apache to perform a double reverse DNS lookup on the client IP address,

Re: [users@httpd] Apache load capacity

2014-07-22 Thread Tom Evans
.On Fri, Jul 18, 2014 at 2:52 PM, David Favor da...@davidfavor.com wrote: A quick test of how fast a single file will serve is to do this. 1) ssh into your machine (you must ssh in for this test for it to be accurate) 2) create a 150K file net1# dd if=/dev/zero of=output.dat

[users@httpd] After authentication, How to authorize users according to IP (or host)?

2014-07-22 Thread Mark jensen
According to this page: http://httpd.apache.org/docs/current/mod/mod_authz_host.html , we can authorize the users after Authentication, Is this true? My problem is I'm trying to authenticate all my users (using LDAP) except some IPs, it have worked will: Directory /var/www/html/ldap

Re: [users@httpd] Page Content Folder for Mark Jensen

2014-07-22 Thread Giovanni Bianchini
Mark; I sent an rar file but this came back If you like I can send it to your email address directly. ScanMail hat einen potentiell gefährlichen Anhang geblockt. Anhang: atlaswines.rar Betreff: [users@httpd] Page Content Folder for Mark Jensen Sender: giova...@enet.cu; Empfänger:

RE: [users@httpd] Page Content Folder for Mark Jensen

2014-07-22 Thread Mark jensen
No thanks alot, I have received it (the rar folder) , and I will read it in details, Thanks a lot for your help :)

RE: [users@httpd] After authentication, How to authorize users according to IP (or host)?

2014-07-22 Thread Mark jensen
sorry there is an error in the last message(in config): 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 ldap AuthzLDAPauthoritative off

[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] After authentication, How to authorize users according to IP (or host)?

2014-07-22 Thread Eric Covener
On Tue, Jul 22, 2014 at 10:38 AM, Mark jensen ngiw2...@hotmail.com wrote: apache let 192.168.1.2 192.168.1.7 to enter the directory, so where is the authorization? How can I make this directory available only for 192.168.1.2 and not to 192.168.1.7? requireall Require valid-user Require ip

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

RE: [users@httpd] After authentication, How to authorize users according to IP (or host)?

2014-07-22 Thread Mark jensen
this won't help if the USER is outside the Network and have to use LDAP, it is surely doesn't have the IP 192.168.1.2