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