Re: [users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Motty Cruz
Thanks for your support; I changed my code to this: Require all denied Require ip 192.168.1.65 now is working fine. Thanks, Motty On 06/09/2015 02:27 PM, Richard wrote: Original Message Date: Tuesday, June 09, 2015 09:18:02 PM + From: Richard

Re: [users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Richard
Original Message > Date: Tuesday, June 09, 2015 09:18:02 PM + > From: Richard > > > >> Date: Tuesday, June 09, 2015 02:11:55 PM -0700 >> From: Motty Cruz >> >> Hello, >> I am trying to restrict access to joomla Administrator directory >> by IP: >># defese agains

Re: [users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Motty Cruz
Thanks, seem to be blocking me when accesssing from a different IP now: here is the code am using: # defese agains brute force attacks order deny,allow Deny from all allow from 192.168.1.65 yes! I am using Apache 2.4 version. On 06/09/2015 02:18 PM, Richard wrote:

Re: [users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Richard
> Date: Tuesday, June 09, 2015 02:11:55 PM -0700 > From: Motty Cruz > > Hello, > I am trying to restrict access to joomla Administrator directory > by IP: ># defese agains brute force attacks > > order deny,allow > Deny from all > Require ip 192.168.1.65 > > > this

[users@httpd] Apache24 restrict director access by IP

2015-06-09 Thread Motty Cruz
Hello, I am trying to restrict access to joomla Administrator directory by IP: # defese agains brute force attacks order deny,allow Deny from all Require ip 192.168.1.65 this code on httpd.conf is not stopping me from logging onto www.site.com/administrator any ideas?