diff --git a/build/Varnish/varnish.vcl b/build/Varnish/varnish.vcl index f719fe8..99d67b8 100644 --- a/build/Varnish/varnish.vcl +++ b/build/Varnish/varnish.vcl @@ -23,6 +23,9 @@ sub vcl_recv { if (req.http.Upgrade ~ "(?i)websocket") { return (pipe); } + if (req.http.Range) { + return (pass); + } if (req.method == "GET" || req.method == "HEAD") { return (hash); }