Nginx 开启 BR 压缩

2021/6/13 7:23:03

本文主要是介绍Nginx 开启 BR 压缩,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Nginx 开启 BR 压缩

安装 nginx

传送门

Brotli Module Configuration

cd /root
git clone https://gitee.com/Longbow/ngx_brotli --recursive

这里我也挖个坑,坑死白嫖党,哼哼

cd /root
git clone https://gitee.com/Longbow/ngx_brotli

cd ngx-brotli/deps
git clone https://gitee.com/Longbow/brotli.git

cd brotli/research
git clone https://gitee.com/Longbow/esaxx.git
git clone https://gitee.com/Longbow/libdivsufsort.git

编译 nginx

./configure --with-http_ssl_module --with-compat --add-dynamic-module=/root/ngx_brotli
make
make install

后续继续安装 nginx 步骤

重启 nginx

systemctl restart nginx

conf 配置

#load module
load_module "modules/ngx_http_brotli_filter_module.so";
load_module "modules/ngx_http_brotli_static_module.so";


http {
    #Brotli Compression
    brotli on;
    brotli_comp_level 6;
    brotli_buffers 16 8k;
    brotli_min_length 20;
    brotli_types *;
}

测试

nginx -t
nginx -s reload


这篇关于Nginx 开启 BR 压缩的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程