Skip to content

Commit

Permalink
fix: TOYS-1615 bypass customer area
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Matras committed Feb 14, 2025
1 parent 9ca92dd commit 830bd51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/cs.varnish/templates/vcl/subroutines/recv.vcl.j2
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ if (req.http.X-Blackfire-Query) {
}
}

# Bypass shopping cart, checkout and search requests
if (req.url ~ "/checkout" || req.url ~ "/catalogsearch") {
# Bypass customer, shopping cart, checkout and search requests
if (req.url ~ "/customer" || req.url ~ "/checkout" || req.url ~ "/catalogsearch") {
return (pass);
}

Expand Down

0 comments on commit 830bd51

Please sign in to comment.