> I did get block sites access with the following acls: > http_access allow local > http_access allow unblockedsites all > http_access deny blockedsites all > http_access deny all
You allow local before you deny blockedsites. Rewrite these rules as: http_access deny blockedsites !unblockedsites http_access allow local http_access deny all Adam
