Se você quiser que o Varnish não "armazene em cache" e "não pesquise no cache", o seguinte deverá funcionar ...
# not to look up in the cache
sub vcl_recv {
if( req.http.host ~ "^staging" ) {
return( pass );
}
# other directives
}
# not to cache
sub vcl_fetch {
if( req.http.host ~ "^staging" ) {
return( hit_for_pass );
}
}
Para mais informações, consulte uma solução semelhante do livro oficial sobre verniz.