That's very much like what I have. I don't know how to incorporate a
whitelist into that though.
With a configuration like this:

default {
    pass !deny1 !deny2 !deny3 !deny4 all
    redirect xxxxxxx
}

i think a whitelist will be usefull only if you want to allow a site that is present in one of the deny list, otherwise all the other site, not in the deny list, will be already allowed. If that is the case i suppose you can incorporate a whitelist in this manner:

default {
    pass white !deny1 !deny2 !deny3 !deny4 all
    redirect xxxxxxx
}

Bye
Francesco

Reply via email to