Blocking by IP Address
sub vcl_recv{
if (req.http.True-Client-Ip ~ "(1.1.2.2|1.2.3.4)") {
call deny_request;
}
}
Last updated
Was this helpful?
sub vcl_recv{
if (req.http.True-Client-Ip ~ "(1.1.2.2|1.2.3.4)") {
call deny_request;
}
}
Last updated
Was this helpful?
Was this helpful?