Accept cache-control headers
This commit is contained in:
parent
1e18560a7e
commit
2182ef94d9
@ -22,7 +22,7 @@ sub vcl_recv {
|
||||
if (req.http.Upgrade ~ "(?i)websocket") {
|
||||
return (pipe);
|
||||
}
|
||||
if (req.http.range) {
|
||||
if (req.http.range || req.http.cache-control == "no-cache") {
|
||||
return (pass);
|
||||
}
|
||||
if (req.method == "GET" || req.method == "HEAD") {
|
||||
|
Reference in New Issue
Block a user