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

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

nginx (static file) nginx

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

nginx (static file) nginx

الملف
pixel.conf
التشغيل
nginx -s reload
# Write the file once:  printf '%b' '\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\xff\xff\xff\x00\x00\x00\x21\xf9\x04\x01\x00\x00\x00\x00\x2c\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3b' > /var/www/pixel.gif
server {
    listen 8080;

    location = /pixel.gif {
        alias /var/www/pixel.gif;
        types { }
        default_type image/gif;
        add_header Cache-Control "no-store";
    }
}

شغّلنا هذا المقتطف وقارنّا البايتات التي أعادها.

التحقق

curl -sI http://localhost:8080/pixel.gif

الموقع الرسمي: nginx (static file)

المزيد بلغة nginx