• Nginx开启Brotli


    #先下载brotli
    git clone https://github.com/google/ngx_brotli.git
    #进入目录
    cd ngx_brotli
    #更新brotli
    git clone https://github.com/google/brotli.git
    git submodule update --init
    #进入nginx源码目录
    cd xxx/nginx
    #生成makefile,注意根据自己使用的模块添加
    ./configure  ...  --add-module=../ngx_brotli
    #编译nginx
    make && make install
    如果编译不出错的情况下,输入nginx -V就可以看到ngx_brotli模块了

    brotli on; #启用
    brotli_comp_level 6; #压缩等级,默认6,最高11,太高的压缩水平可能需要更多的CPU
    brotli_buffers 16 8k; #请求缓冲区的数量和大小
    brotli_min_length 1k; #指定压缩数据的最小长度,只有大于或等于最小长度才会对其压缩。这里指定1k
    brotli_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml text/html application/json image/svg application/font-woff application/vnd.ms-fontobject application/vnd.apple.mpegurl image/x-icon image/jpeg image/gif image/png image/bmp; #指定允许进行压缩类型
    brotli_static always; #是否允许查找预处理好的、以.br结尾的压缩文件,可选值为on、off、always
    brotli_window 512k; #窗口值,默认值为512k

    # .unityweb类型文件添加gzip压缩头
        # 如果Unity中未开启gzip,关闭该配置
        location ~ .+\.unityweb$ {
            add_header Content-Encoding gzip;
        }
     
        # wasm使用gzip压缩,设置MIME type为application/wasm wasm
        location ~ .+\.wasm$ {
            add_header Content-Encoding gzip;
            types {
              application/wasm wasm;
            }

    ./configure: error: C compiler cc is not found
    yum install gcc gcc-c++ -y

    Centos8 repo 'AppStream'下载元数据失败
    修改 /etc/yum.repos.d/CentOS-Linux-Base.repo,CentOS-Linux-AppStream.repo,CentOS-Linux-Extras.repo
    注释mirrorlist,把baseurl取消注释并修改为阿里云镜像地址
    baseurl=https://mirrors.aliyun.com/centos/$releasever-stream/BaseOS/$basearch/os/
    baseurl=https://mirrors.aliyun.com/centos/$releasever-stream/AppStream/$basearch/os/
    baseurl=https://mirrors.aliyun.com/centos/$releasever-stream/extras/$basearch/os/
    # 清除所有缓存文件
    yum clean all
    # 制作元数据缓存
    yum makecache

    cd nginx-1.*.*
    ./configure --with-compat --add-dynamic-module=/usr/src/ngx_brotli

    ./configure: error: the HTTP rewrite module requires the PCRE library.
    yum -y install pcre-devel
    ./configure: error: the HTTP gzip module requires the zlib library.
    yum -y install openssl openssl-devel

    make modules

    load_module modules/ngx_http_brotli_filter_module.so;
    load_module modules/ngx_http_brotli_static_module.so;

  • 相关阅读:
    bp神经网络中的重要函数解释
    前端获取文件后缀名
    基于JS的迷宫小游戏
    C# WinForm —— 23 Timers.Timer 组件介绍与使用
    Windows:Arduino IDE 开发环境配置【保姆级】
    Redis设计与实现(八)| 事务
    使用ngrok内网穿透后,调用相关接口报ERR_NGROK_6024 异常
    Kubernetes 部署发布镜像(cubefile:0.4.0)
    40+的年龄50W+的年薪,2线城市入职名企,他曾想放弃测试?
    python爬取深交所各行业前三上市公司市值
  • 原文地址:https://blog.csdn.net/niujing1987/article/details/128024876