Editing and saving posts and pages does not seem to purge the Varnish cache. At least, viewing my test site http://vps11611.ovh.net/ via web-sniffer.com, shows it is being served the cached (old) post.
In my /etc/varnish/default.vcl :
...
# Purge ACL
acl purge {
# Only localhost can purge my cache
"127.0.0.1";
"localhost";
}
...
Do I need something else to get this working?
Thanks :)