emptygif
اللغة: العربية

كل اللغات وأطر العمل

OpenResty (Lua) Lua

مقتطف بلغة Lua لـ OpenResty (Lua) يستجيب لطلبات /pixel.gif بملف GIF الفارغ، الذي يُفك ترميزه مرة واحدة عند بدء التشغيل.

OpenResty (Lua) Lua

الملف
nginx.conf
التشغيل
openresty -s reload
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

الموقع الرسمي: OpenResty (Lua)