美文网首页
nginx 开启 gzip 配置

nginx 开启 gzip 配置

作者: 闲看热闹的 | 来源:发表于2020-03-24 22:15 被阅读0次

    测试 nginx 版本: 1.14.0

    // 开启 gzip
    gzip on; 
    // 设置 http 1.0 生效,默认使用 proxy_pass 情况下,会使用 http 1.0 协议
    gzip_http_version 1.0; 
     // 启用压缩,如果 header 中包含 “Last_Modified” 头信息,启用压缩
    gzip_proxied no_last_modified;
    // 当压缩类型为 html、css、js 时,开启压缩
    gzip_types text/html text/css text/javascript; 
    
    

    相关文章

      网友评论

          本文标题:nginx 开启 gzip 配置

          本文链接:https://www.haomeiwen.com/subject/upxzyhtx.html