Project

General

Profile

Feature #1563

Updated by gstrauss about 1 year ago

What I'd like to be able to do, is if a user access my site, and meets a certain set of conditions, that they are then blocked for x minutes. 

 Specifically, I'd like to be able to say that if a user's referrer matches a certain regexp, that url.acces-deny = ("") be applied to them by ip for an hour. 

 Something like... 


 


 <pre> 

 

 $HTTP["referer"] =~ "^http://bad\.site" { 
    remember 60 url.access-deny = ( "" ) 
 } 
 </pre> 


 


 -- wlynch

Back