Still no luck:


<Directory /home/httpd/html>
Options Indexes Includes FollowSymLinks
AllowOverride None
<Limit GET POST>
order allow,deny
Allow from 888.888.888.888 777.777.777.777
deny from all 
</Limit> 
</Directory>

OR:

<Directory /home/httpd/html>
Options Indexes Includes FollowSymLinks
AllowOverride None
<Limit GET POST>
order deny,allow
Allow from 888.888.888.888 777.777.777.777
deny from all 
</Limit> 
</Directory>

What must I do???

-----Original Message-----
From: Bero [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 30, 1999 3:43 PM
To: Lambert, Stephen : CO IR
Cc: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]'
Subject: RE: [newbie] ACCESS.CONF syntax for restricting IP's


On Thu, 30 Sep 1999, Lambert, Stephen : CO IR wrote:

> <Limit GET POST>
> order allow,deny
> deny from all
> Allow from 888.888.888.888 777.777.777.777.777
> </Limit> 

Can't work: With the "order allow, deny" command, you tell httpd to
process allow first, then process deny, and override the allow settings.

You want "order deny,allow" instead.

LLaP
bero

Reply via email to