vhost-stack/etc/varnish/sites.d/example.com.vcl

6 lines
194 B
Plaintext
Raw Normal View History

2021-04-04 13:28:22 -07:00
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
}
}