From db4c524df630b6c893094bc72564cc250ed9e39e Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Mon, 29 Apr 2019 07:56:51 +0000 Subject: [PATCH] fix(static): fix VCL syntax error --- layouts/fastly/helix.vcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/fastly/helix.vcl b/layouts/fastly/helix.vcl index 769b212c..3ac81ddc 100644 --- a/layouts/fastly/helix.vcl +++ b/layouts/fastly/helix.vcl @@ -549,7 +549,7 @@ sub hlx_fetch_static { set req.esi = true; esi; set beresp.http.X-ESI = "processed(" + bereq.http.Accept-Encoding + ", " + req.esi + "," + req.http.X-From-Edge +")"; - `set beresp.http.x-compress-hint = "on";` // so h2o compresses it on the way out + set beresp.http.x-compress-hint = "on"; // so h2o compresses it on the way out set beresp.http.Cache-Control = "max-age=31622400,immutable"; # keep it for a year in the browser; set beresp.http.Surrogate-Control = "max-age=31622400,immutable"; set beresp.cacheable = true;