diff --git a/etc/vcl_snippets/hash.vcl b/etc/vcl_snippets/hash.vcl index e918fba6..da416ba7 100644 --- a/etc/vcl_snippets/hash.vcl +++ b/etc/vcl_snippets/hash.vcl @@ -8,4 +8,10 @@ if ( req.http.Authorization ~ "^Bearer" ) { set req.hash += "Authorized"; } + + set req.hash += req.url; + set req.hash += req.http.Host; + set req.hash += req.http.Fastly-SSL; + set req.hash += req.vcl.generation; + return (hash); }