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
replace lookup with hash
default.vcl:
sub vcl_recv { # dont cache foo.com or bar.com - optional www if (req.http.host ~ "(www\.)?(foo|bar)\.com") { return(pass); } # cache foobar.com - optional www if (req.http.host ~ "(www\.)?foobar\.com") { return(hash); } }