1. Create a file `/etc/squid/white.acl`
2. Put the following data there:
> > finam.ru/analysis/.*
> finam.ru/.*\.js
> finam.ru/.*\.css
>
3. Put this code into `squid.conf`. You have to put the whitelist before the blacklist:
> > acl good_url url_regex "/etc/squid/white.acl"
> http_access allow good_url
>
> acl bad_url url_regex "/etc/squid/block.acl"
> http_access deny bad_url
>