Using VCL
You can ensure requests are not served from cache by returning pass if your conditions resolve to true in the “vcl_recv” block. For example:
sub vcl_recv {
if (req.url == "/some-page") {
return (pass);
}
}
Using VCL
You can ensure requests are not served from cache by returning pass if your conditions resolve to true in the “vcl_recv” block. For example:
sub vcl_recv {
if (req.url == "/some-page") {
return (pass);
}
}