ngx_http_empty_gif_module是
Nginx自带的标准模块,它只返回
一个保存在内存中的透明像素的
gif图片(速度当然比硬盘上读取的速度快很多),多用于传递
统计参数,用在location上下文中。
该模块
默认就是开启的。
配置
location ~ /test_[0-9].gif {
empty_gif;
}
location ~* /3145/ {
empty_gif;
}
整个
Nginx.conf的
内容如下:
https://github.com/taoyunxing/github_test/blob/master/nginx.conf
测试
curl -vo /tmp/1.gif 'http://127.0.0.1/test_1.gif'
curl -vo /tmp/2.gif 'http://127.0.0.1/3145/'
下面是从Firefox浏览器中请求的效果图,更加有说明力
参考文献 [1].http://
Nginx.org/en/docs/http/ngx_http_empty_gif_module.html 官网模块 [2].http://www.ttlsa.com/
Nginx/
Nginx-modules-empty_gif/ [3].http://blog.csdn.net/conezxy/article/details/1869130 该模块的源码分析