sub vcl_recv {
    if (req.http.host == "example.com" || req.http.host == "www.example.com") {
        call wordpress; # add site specific custom configs before/after wordpress sub call
    }
}