Commit c041cdc1 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

vtc: Check the correct protected headers

Refs #3984
parent 21f8d045
......@@ -4,16 +4,16 @@ varnish v1 -vcl {
backend be none;
sub access_req {
if (req.http.content-length || req.http.content-encoding) {}
if (req.http.content-length || req.http.transfer-encoding) {}
}
sub access_resp {
if (resp.http.content-length || resp.http.content-encoding) {}
if (resp.http.content-length || resp.http.transfer-encoding) {}
}
sub access_bereq {
if (bereq.http.content-length || bereq.http.content-encoding) {}
if (bereq.http.content-length || bereq.http.transfer-encoding) {}
}
sub access_beresp {
if (beresp.http.content-length || beresp.http.content-encoding) {}
if (beresp.http.content-length || beresp.http.transfer-encoding) {}
}
sub vcl_recv {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment