From eb17b73690db78ff425ff482504e40cb17834893 Mon Sep 17 00:00:00 2001 From: Ben Halpern Date: Tue, 12 Sep 2023 12:05:34 -0400 Subject: [PATCH] Add new countries to edge cache dictionary (#20084) --- config/fastly/snippets/client_geolocation.vcl | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/config/fastly/snippets/client_geolocation.vcl b/config/fastly/snippets/client_geolocation.vcl index 82827ecda..34ff6dfb2 100644 --- a/config/fastly/snippets/client_geolocation.vcl +++ b/config/fastly/snippets/client_geolocation.vcl @@ -6,8 +6,21 @@ table active_geofencing_regions { // 2. It lets us enable more granular caching (for big campaigns and/or customers) // without having to redeploy the app. // 3. It lets us turn off geofenced caching entirely fairly easily (by emptying the table) - "CA": "CA", - "US": "US" + "CA": "CA", // Canada + "US": "US", // USA + "AU": "AU", // Australia + "BR": "BR", // Brazil + "CN": "CN", // China + "FR": "FR", // France + "DE": "DE", // Germany + "IN": "IN", // India + "ID": "ID", // Indonesia + "MY": "MY", // Malaysia + "NZ": "NZ", // New Zealand + "PH": "PH", // Philippines + "RU": "RU", // Russia + "SG": "SG", // Singapore + "GB": "GB" // United Kingdom } sub vcl_recv {