Nginx Gzip 压缩配置

1. 开启 Gzip 压缩

在 Nginx 配置文件中,通常位于 /etc/nginx/nginx.conf/etc/nginx/conf.d/default.conf,添加或修改以下配置:

http {
    gzip on;
    gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
    gzip_comp_level 6;
    gzip_min_length 256;
    gzip_proxied any;
    gzip_vary on;
    gzip_disable "MSIE [1-6]\.";
}

2. 配置项说明

  • gzip on;:开启 Gzip 压缩。

  • gzip_types:指定需要压缩的文件类型。常见的 MIME 类型包括 text/plaintext/cssapplication/json 等。

  • gzip_comp_level:压缩级别,范围是 1-9,1 为最低压缩率,9 为最高压缩率。通常设置为 6。

  • gzip_min_length:设置最小压缩文件大小,小于该值的文件不会被压缩。默认单位为字节。

  • gzip_proxied:设置是否对代理请求进行压缩。any 表示对所有请求进行压缩。

  • gzip_vary:在响应头中添加 Vary: Accept-Encoding,告知客户端支持 Gzip 压缩。

  • gzip_disable:禁用 Gzip 压缩的浏览器。例如,MSIE [1-6]\. 表示禁用 IE6 及以下版本的 Gzip 压缩。

3. 案例

假设你有一个网站,希望压缩 HTML、CSS、JavaScript 和 JSON 文件,并且压缩级别为 6,最小压缩文件大小为 256 字节。配置如下:

http {
    gzip on;
    gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
    gzip_comp_level 6;
    gzip_min_length 256;
    gzip_proxied any;
    gzip_vary on;
    gzip_disable "MSIE [1-6]\.";

    server {
        listen 80;
        server_name example.com;

        location / {
            root /var/www/html;
            index index.html;
        }
    }
}

4. 验证配置

保存配置文件后,使用以下命令检查配置是否正确:

nginx -t

如果配置正确,重新加载 Nginx:

nginx -s reload

5. 测试 Gzip 压缩

使用 curl 命令测试 Gzip 压缩是否生效:

curl -H "Accept-Encoding: gzip" -I http://example.com

如果响应头中包含 Content-Encoding: gzip,则说明 Gzip 压缩已生效。

总结

通过以上配置,Nginx 可以对指定类型的文件进行 Gzip 压缩,从而减少传输数据量,提高网站加载速度。

本篇文章内容来源于:Nginxgzip开启压缩及相关配置详细说明以及案例