Q1:i am caching the content for mobile and desktop. I want to purge or ban cache only for mobile or only for desktop. So how to purge and ban cache for mobile and desktop.
Q2: i want to bypass the cache for Desktop user agent.I want to cache only mobile user agent firstly.Please help.This is my VCL code for cache mobile and desktop user agent.
Regular purging in Varnish is done based on the URL and removes all variations. If you only want to remove specific objects for one of the cache variations (mobile vs desktop), you'll need to use banning.
Here's an official banning tutorial: https://www.varnish-software.com/developers/tutorials/ban/
The VCL code
If we use your VCL code as the basis, here's the complete VCL including the banning logic:
How to run
Here are a couple of examples of how to execute the bans.
1. Invalidate a page for both mobile and desktop
The following command will remove the
/my-page
page from the cache for thedomain.ext
domain. This will remove both the mobile and the desktop version:2. Invalidate a page for the mobile version of the website
The following command will remove the
/my-page
page from the cache for thedomain.ext
domain, but only for the mobile version:3. Invalidate a page for the mobile version of the website
The following command will remove the
/my-page
page from the cache for thedomain.ext
domain, but only for the desktop version:4. Invalidate multiple pages for both the mobile and the desktop version
The following command will remove all pages from the cache that start with
/my-*
for thedomain.ext
domain. Both for the mobile and desktop version of the website5. Invalidate multiple pages for the mobile website
The following command will remove all pages from the cache that start with
/my-*
for thedomain.ext
domain, but only for the mobile version of the website:6. Invalidate multiple pages for the desktop website
The following command will remove all pages from the cache that start with
/my-*
for thedomain.ext
domain, but only for the desktop version of the website:Further customizations
The VCL code assumes that the
192.168.55.0/24
IP range will be used to invalidate the cache remotely. Please make sure the right IP addresses, hostnames and CIDRs are part of thepurge
ACL.The ban executions were done using the
domain.ext
domain name. Please use the right hostname to invalidate your cache.If the hostname you're using to invalidate (e.g. "localhost") is not that hostname with which the objects are stored in the cache, please assign an explicit
Host
header to your invalidation calls.Here's an example where the ban call is done locally, but the
Host
header to match isdomain.ext
:Bypassing the cache for desktop users
To answer your second question, here's how you bypass the cache for the desktop website:
This small snippet of VCL code can be added to your existing one. In one of the earlier
vcl_recv
definitions theX-UA-Device
header is set, which can be reused here.