On 4/24/06, Jeff Nokes <[EMAIL PROTECTED]> wrote:
>
>
>       <LocationMatch "^/+(marketing/report.*)$">
>         order deny,allow
>         deny from all
>         allow from  10  172.16  192.168
>       </LocationMatch>

mod_rewrite or mod_setenvif can do access control based on arbitrary
headers.  So assuming you have an X-Remote-IP header, you could do
SetEnvIf X-Remote-IP ^10\..* good-guy
SetEnvIf X-Remote-IP ^172\.16\..* good-guy
SetEnvIf X-Remote-IP ^192\.168\..* good-guy
and then add
Allow from env=good-guy
to the above block.

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]

Reply via email to