Erişim Kontrol Listeleri (ACL)
acl allowed {
"localhost";
"192.0.2.0"/24; # yerel ağdaki herkes
! "192.0.2.23"; # bu ip hariç hepsi
}
sub vcl_recv {
if(client.ip !~ allowed) {
return(synth(403, "Erişim engeliniz var."));
}
}Last updated