[users@httpd] apache 2.4.3 and Require instead of Allow from

2012-10-22 Thread Alain Roger
Hi, in former version of apache 2.2 we used "Allow from 192.168.1.10" to allow computer with ip address 192.168.1.10 to access to web folder and thus to website. under apache 2.4.x now we have to user Require instead... here is my problem i know that if i write Require all granted everybody will

Re: [users@httpd] apache 2.4.3 and Require instead of Allow from

2012-10-22 Thread Pete Houston
On Mon, Oct 22, 2012 at 11:44:44PM +0200, Alain Roger wrote: > How can i do to restrict this folder/website to 2 ip addresses (e.g. > 192.168.1.10 and 192.168.2.50) ? Require ip 192.168.1.10 192.168.2.50 as specified in the documentation at http://httpd.apache.org/docs/2.4/mod/mod_authz_c

Re: [users@httpd] apache 2.4.3 and Require instead of Allow from

2012-10-22 Thread Alain Roger
Sorry i found it too late :( but thx anyway On Tue, Oct 23, 2012 at 12:01 AM, Pete Houston wrote: > On Mon, Oct 22, 2012 at 11:44:44PM +0200, Alain Roger wrote: > > How can i do to restrict this folder/website to 2 ip addresses (e.g. > > 192.168.1.10 and 192.168.2.50) ? > > Require ip 19