emptygif
語言: 繁體中文

所有語言和框架

nginx (static file) nginx

適用於 nginx (static file) 的 nginx 程式碼片段,以空 GIF 回應對 /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 範例