在CentOS 6.9 x86_64的nginx 1.12.2上开启ngx_http_empty_gif_module模块实录

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 该模块的源码分析

相关文章

Centos下搭建性能监控Spotlight
CentOS 6.3下Strongswan搭建IPSec VPN
在CentOS6.5上安装Skype与QQ
阿里云基于centos6.5主机VPN配置
CentOS 6.3下配置multipah
CentOS安装、配置APR和tomcat-native