6 lines
194 B
Plaintext
6 lines
194 B
Plaintext
|
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
|
||
|
}
|
||
|
}
|