> Im trying to to make an access and deny list.

> My blacklist should look like "deny everyting" and
> my whitelist should consist of only allowed links.

> The example below works, but i need to define
> 0.0.0.0/0.0.0.0 as the blacklist.

> acl whitelist url_regex ^http://www\.siemens\.se/
> acl blacklist dstdomain .siemens.se
> http_access deny blacklist !whitelist

Since you want to deny anything that's not on your whitelist, just use
something like this:

acl whitelist url_regex ^http://www\.somesite\.com
http_access deny !whitelist

Adam

Reply via email to