Joshua,
So, cand these be combined into one container somehow?
<Directory "/">
Order Allow,Deny
Allow from all
Deny from env=block_bad_bots
</Directory>
<Directory "/home/*/www">
Options Indexes Includes FollowSymLinks
# FollowSymLinks MultiViews
AllowOverride Options All
Order allow,deny
Allow from all
</Directory>
-Grant
----- Original Message -----
From: "Joshua Slive" <[EMAIL PROTECTED]>
To: <[email protected]>; "Grant Peel" <[EMAIL PROTECTED]>
Sent: Sunday, March 30, 2008 5:43 PM
Subject: Re: [EMAIL PROTECTED] Logging Denied Referrers
On Sun, Mar 30, 2008 at 3:32 PM, Grant Peel <[EMAIL PROTECTED]> wrote:
Thanks Joshua,
So, If I am reading that docs correctly, the bit I have to deny certain
USer
Agents should go near the top of my httpd.conf?
SetEnvIfNoCase User-Agent "^IDBot" block_bad_bots
SetEnvIfNoCase User-Agent "^$" block_bad_bots
SetEnvIfNoCase User-Agent "Java/1.4.1_04" block_bad_bots
<Directory "/">
Order Allow,Deny
Allow from all
Deny from env=block_bad_bots
</Directory>
It doesn't matter where in httpd.conf that it goes. But this will only
work if you have NO OTHER Order/Allow/Deny statements in httpd.conf.
Since <Directory /> is essentially the first thing evaluated
(regardless of its location) it will get overridden by any other
access control directives. This isn't a problem unless you have some
generic
<Directory /var/web>
Order Allow,Deny
Allow from all
</Directory>
sections which will turn off your anti-robot rules.
Joshua.
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]