Varnish (VCL synthetic) VCL
Varnish (VCL synthetic) साठी VCL स्निपेट, जो /pixel.gif वरच्या रिक्वेस्टना empty GIF ने उत्तर देतो. GIF स्टार्टअपला एकदाच डिकोड होतो.
Varnish (VCL synthetic) VCL
vcl 4.1;
import blob;
backend default none; # or your real backend
sub vcl_recv {
if (regsub(req.url, "\?.*$", "") == "/pixel.gif") {
return (synth(200, "OK"));
}
}
sub vcl_synth {
if (resp.status == 200 && regsub(req.url, "\?.*$", "") == "/pixel.gif") {
set resp.http.Content-Type = "image/gif";
set resp.http.Cache-Control = "no-store";
set resp.body = blob.decode(BASE64, encoded="R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
return (deliver);
}
}
आम्ही हा स्निपेट चालवला आणि त्याने परत केलेले बाइट्स तुलना करून पाहिले.
तपासा
curl -sI http://localhost:8080/pixel.gif