Advertisement
Guest User

Untitled

a guest
Oct 5th, 2011
622
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. sub vcl_deliver {
  2.  
  3. if ( obj.hits > 0 ) {
  4. set resp.http.X-Varnish-Cache = "HIT";
  5. }
  6. else {
  7. set resp.http.X-Varnish-Cache = "MISS";
  8. }
  9. }
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement