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 压缩的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-13用Nginx防范DDoS攻击的那些事儿
- 2024-12-13用Terraform在AWS上搭建简单NGINX服务器指南
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享