We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77f9ee5 + 16e5c8d commit d401676Copy full SHA for d401676
app/code/Magento/PageCache/etc/varnish6.vcl
@@ -62,13 +62,13 @@ sub vcl_recv {
62
return (pass);
63
}
64
65
- # Bypass shopping cart and checkout
66
- if (req.url ~ "/checkout") {
+ # Bypass customer, shopping cart, checkout
+ if (req.url ~ "/customer" || req.url ~ "/checkout") {
67
68
69
70
# Bypass health check requests
71
- if (req.url ~ "/pub/health_check.php") {
+ if (req.url ~ "^/(pub/)?(health_check.php)$") {
72
73
74
0 commit comments