2013-09-01 14:13:58
来 源
IT技术网
Nginx
本文介绍Nginx服务器开启GZip压缩的方法,希望对于初学Nginx服务器相关的朋友有帮助,更多Nginx安装、配置、报错处理等资源请本站内搜索。。

常用配置片段如下:

   gzip             on;

gzip_comp_level  2;                        # 压缩比例,比例越大,压缩时间越长。默认是1

gzip_types       text/css text/javascript; # 哪些文件可以被压缩

gzip_disable     "MSIE [1-6].";           # 无视IE6这个笨蛋~

其中 gzip_types 选项默认只压缩 text/html,源码见:

   src/http/modules/ngx_http_gzip_filter_module.c 行152:     &ngx_http_html_default_types[0] src/http/ngx_http.c 行77:     ngx_str_t  ngx_http_html_default_types[] = {         ngx_string("text/html"), 

常用的静态 type 有,看自己需要压缩的情况而定:

   text/html

text/plain

text/css

application/x-javascript

text/javascript

application/xml

OK,到这里基本服务端已经配置完毕,Nginx 只需要 reload 一下即可。

下面来测试一下,用 curl 来如何测试服务端已经开启 gzip(测试条件是默认gzip_types,即只压缩 text.html ,其他 type 未压缩):

   查看是否开启gzip,需要客户端加入:"Accept-Encoding: gzip, deflate" 头信息。$ curl -I -H "Accept-Encoding: gzip, deflate" "http://localhost/tag.php" HTTP/1.1 200 OK

Server: nginx

Date: Thu, 08 Mar 2012 07:23:46 GMT

Content-Type: text/html

Connection: close

Content-Encoding: gzip$ curl -I -H "Accept-Encoding: gzip, deflate" "http://localhost/style.css" HTTP/1.1 200 OK

Server: nginx

Date: Thu, 08 Mar 2012 07:23:54 GMT

Content-Type: text/css

Connection: close

Last-Modified: Tue, 27 Dec 2011 10:00:51 GMT

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。