在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模块实录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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 该模块的源码分析 原文链接:https://www.f2er.com/centos/374919.html

猜你在找的CentOS相关文章