அனைத்து மொழிகளும் ஃப்ரேம்வொர்க்குகளும்
OpenResty (Lua) Lua
/pixel.gif க்கு வரும் ரெக்வெஸ்ட்களுக்கு empty GIF மூலம் பதிலளிக்கும், OpenResty (Lua) க்கான Lua ஸ்னிப்பெட். GIF ஸ்டார்ட்அப்பில் ஒருமுறை மட்டுமே டீகோட் செய்யப்படுகிறது.
OpenResty (Lua) Lua
http {
init_by_lua_block {
-- decoded once, when the master process loads the config
PIXEL_GIF = ngx.decode_base64("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
}
server {
listen 8080;
location = /pixel.gif {
content_by_lua_block {
ngx.header["Content-Type"] = "image/gif"
ngx.header["Content-Length"] = #PIXEL_GIF
ngx.header["Cache-Control"] = "no-store"
ngx.print(PIXEL_GIF)
}
}
}
}
இந்த ஸ்னிப்பெட்டை ரன் செய்து, அது திருப்பித் தந்த பைட்களை ஒப்பிட்டுப் பார்த்தோம்.
சரிபார்
curl -sI http://localhost:8080/pixel.gif