Nginx 开启 BR 压缩
Posted Argo Zhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 压缩的主要内容,如果未能解决你的问题,请参考以下文章