OpenResty (Lua) Lua
OpenResty (Lua) માટે Lua સ્નિપેટ, જે /pixel.gif પરની રિક્વેસ્ટનો જવાબ empty GIF થી આપે છે. 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