nginx / ngx_cache_purge (project fully funded by yo.se)
Module adding ability to purge content from nginx's FastCGI, proxy, SCGI and uWSGI caches.

View:
README file,
CHANGES file.

Download:
ngx_cache_purge-1.5
(SHA1: f5717a2aee2cc174180627f9bf74a7c2f906047d)

GitHub repository:
http://github.com/FRiCKLE/ngx_cache_purge/

Example configuration:
proxy_cache_path   /tmp/cache   keys_zone=tmpcache:10m;

location / {
	proxy_pass		http://127.0.0.1:8000;
	proxy_cache		tmpcache;
	proxy_cache_key		$uri$is_args$args;
}

location ~ /purge(/.*) {
	allow			127.0.0.1;
	deny			all;
	proxy_cache_purge	tmpcache   $1$is_args$args;
}