文章目录


重识Nginx - 07 使用ngx_http_gzip_module对请求开启gizp压缩_javascript

Pre

重识Nginx - 06 搭建静态资源Web服务器(alias VS root) 留下了一个问题, 传输数据太大了,肿么办?

那就是开启 gzip压缩功能


ngx_http_gzip_module

​https://nginx.org/en/docs/http/ngx_http_gzip_module.html​

重识Nginx - 07 使用ngx_http_gzip_module对请求开启gizp压缩_nginx_02

支持的属性如上 , 可以认真阅读官方文档,这里就不细数了。。


配置

Syntax:  gzip on | off;
Default:
gzip off;
Context: http, server, location, if in

看下nginx,conf配置 , 我们配置到 http下面

重识Nginx - 07 使用ngx_http_gzip_module对请求开启gizp压缩_nginx_03

gzip  on;
gzip_min_length 20;
gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;

配置完成后记得reload

[root@VM-0-7-centos conf]# ../sbin/nginx -s reload
[root@VM-0-7-centos conf]#

测试下效果,看 Content-Encoding : gzip

重识Nginx - 07 使用ngx_http_gzip_module对请求开启gizp压缩_nginx_04


实操

我们再访问一个 网页

http://ip:9999/a.html

重识Nginx - 07 使用ngx_http_gzip_module对请求开启gizp压缩_gzip压缩_05

可以看到确实起到了效果 .

当然了,我们关闭gizp , 再对比下

重识Nginx - 07 使用ngx_http_gzip_module对请求开启gizp压缩_gzip压缩_06

效果一目了然

重识Nginx - 07 使用ngx_http_gzip_module对请求开启gizp压缩_nginx_07