From 5459d3037f193742a3941559104120f959c7db64 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Thu, 25 Apr 2019 16:27:01 +0000 Subject: [PATCH] fix(static): turn on ESI processing when backend response requests it --- layouts/fastly/helix.vcl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/layouts/fastly/helix.vcl b/layouts/fastly/helix.vcl index 8c01f745..4e0011df 100644 --- a/layouts/fastly/helix.vcl +++ b/layouts/fastly/helix.vcl @@ -998,6 +998,10 @@ sub vcl_fetch { call hlx_fetch_static; + if (beresp.http.X-ESI) { + esi; + } + return(deliver); }