Polipo >
See also Ad-blocking with Polipo and adzapper
I did not follow these notes. They're just here for reference.
With thanks to http://rightfootin.blogspot.com/2009/11/ad-blocking-with-polipo.html
Polipo is a fast local proxy that does on-disk caching (by default, at least). Privoxy is another local proxy, with a focus on privacy and ad-blocking. Due to the nature and purpose of Privoxy, it has to buffer portions of the page (to check for content it should block) before serving it to the browser. This makes it a bit slower than Polipo. You could always use Polipo in front of Privoxy (see here, middle of the page), but that is a bit much if you don't need fancy filtering and simply want a domain/regex blocklist.
You could build up the blocklist yourself, by hand, but that would be a pain. Instead, we'll just convert an adblock filterset to a format that Polipo can understand. Since Polipo is blocking by matching the URL only, we don't have the same fine-grained control as Adblock rules, but I personally don't require that level of control.
Firstly, grab an adblock filterset (e.g., easylist.txt). Next, grab either adblock2polipo.py (python) or adblock2polipo.rb (ruby). Then run whichever script you downloaded with the filerset file as the first parameter. The script will dump the re-written rules to the console so they can be inspected or be redirected to the file polipo uses to load its blocking rules from ~/.polipo-forbidden
or /etc/polipo/forbidden
on *nix systems. Restart Polipo and the new blocking rules should take effect.
PS. If you're like me, you'd rather have Polipo serve up a blank page for blocked URLs rather than a 403 error page. To accomplish this you need to edit the Polipo config file and add a forbiddenUrl
option pointing to an empty image, such as Wikimedia's Transparent.gif. One good option for this is the following: make sure localDocumentRoot
is either set to a real path (such as /usr/share/polipo/www
) or commented out completely. Then create an empty file in that directory:
\sudo \wget -O /usr/share/polipo/www/Transparent.gif \ https://upload.wikimedia.org/wikipedia/commons/c/ce/Transparent.gif
Then point forbiddenUrl
to http://127.0.0.1:8123/Transparent.gif
. Restart Polipo. That's it. :)
NB. Firefox users will need to add port 8123 to the allowed ports list, or they'll get an equally annoying error message from Firefox instead of a blank page. To do this, you need to open about:config in a new tab/window. Right-click
and go to New->String
, and for the property name put network.security.ports.banned.override
, and for the value put 8123
. It should work properly after that.
some links updating
removing the python thing, because.. I don't see why I even cached it. archive.org has it just in case.