传送门
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
./configure --with-http_ssl_module --with-compat --add-dynamic-module=/root/ngx_brotli make make install
后续继续安装 nginx 步骤
systemctl restart nginx
#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