We have by far the largest RPM repository with NGINX module packages and VMODs for Varnish. If you want to install NGINX, Varnish, and lots of useful performance/security software with smooth
Active subscription is required.
yum
upgrades for production use, this is the repository for you.
Active subscription is required.
Sometimes you have that one page that needs to be excluded from Varnish cache. Here is how to do it.
Identify vcl_recv function in your VCL file (normally default.vcl
).
Paste in the rule to bypass cache for particular page URL:
sub vcl_recv {
...
if (req.url ~ "^/your-exact-url-here") {
return (pass);
}
...
}