I have been Googling aggressively, but without luck.
I\'m using Varnish with great results, but I would like to host multiple websites on a single server (Apache), witho
Yes,
in vcl_recv you just match the hosts that you would like not to cache and pass them. Something like this (untested):
vcl_recv { # dont cache foo.com or bar.com - optional www if (req.host ~ "(www)?(foo|bar).com") { return(pass); } }