acl {
default {
block !bl_audo-video !bl_porn
}
}
this acl is the problem, your blacklists are set (Provided the path is
correct)
however, the rule should be:
pass !bl_audo-video !bl_porn all
this is like: pass (not)bl_audo-video (not)bl_porn all
in other words, pass everything BUT bl_audo-video and bl_porn
acl {
default {
block !bl_audo-video !bl_porn
}
}
