在CentOS 6.9 x86_64的nginx 1.12.2上开启ngx_http_empty_gif_module模块实录
生活随笔
收集整理的這篇文章主要介紹了
在CentOS 6.9 x86_64的nginx 1.12.2上开启ngx_http_empty_gif_module模块实录
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
ngx_http_empty_gif_module是nginx自帶的標(biāo)準(zhǔn)模塊,它只返回一個保存在內(nèi)存中的透明像素的GIF圖片(速度當(dāng)然比硬盤上讀取的速度快很多),多用于傳遞統(tǒng)計參數(shù),用在location上下文中。
該模塊默認(rèn)就是開啟的。
配置
https://github.com/taoyunxing/github_test/blob/master/nginx.conf
測試
[1].http://nginx.org/en/docs/http/ngx_http_empty_gif_module.html? 官網(wǎng)模塊
[2].http://www.ttlsa.com/nginx/nginx-modules-empty_gif/
[3].http://blog.csdn.net/conezxy/article/details/1869130? ?該模塊的源碼分析
該模塊默認(rèn)就是開啟的。
配置
location ~ /test_[0-9].gif {empty_gif;
}location ~* /3145/ {empty_gif;
}整個nginx.conf的內(nèi)容如下:
https://github.com/taoyunxing/github_test/blob/master/nginx.conf
測試
curl -vo /tmp/1.gif 'http://127.0.0.1/test_1.gif'
下面是從Firefox瀏覽器中請求的效果圖,更加有說明力
[1].http://nginx.org/en/docs/http/ngx_http_empty_gif_module.html? 官網(wǎng)模塊
[2].http://www.ttlsa.com/nginx/nginx-modules-empty_gif/
[3].http://blog.csdn.net/conezxy/article/details/1869130? ?該模塊的源碼分析
總結(jié)
以上是生活随笔為你收集整理的在CentOS 6.9 x86_64的nginx 1.12.2上开启ngx_http_empty_gif_module模块实录的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在CentOS 6.9 x86_64的n
- 下一篇: 解决github push错误403 F