On Wed, Aug 14, 2013 at 03:56:47PM +1000, Paul McInerney wrote: > > sub vcl_hit { > if (req.request == "PURGE") { > error 200 "Purged."; > } > } > > sub vcl_miss { > if (req.request == "PURGE") { > error 404 "Not in cache."; > } > } You're missing the purge command in hit and miss. -- Andreas