当前位置: 首页 > article >正文

nginx配合vite开启gzip压缩以及各种问题处理

1、导入压缩插件

import compressPlugin from "vite-plugin-compression";

2、vite配置压缩插件

plugins: [
    vue(),
    compressPlugin({
      verbose: true, // 默认即可
      disable: false, //开启压缩(不禁用),默认即可
      deleteOriginFile: true, //删除源文件
      threshold: 1, //压缩前最小文件大小
      algorithm: 'gzip', //压缩算法
      ext: '.gz', //文件类型
    })
  ],

3、nginx配置(在http层级下) 这里要注意的 sendfile on;一定要开启, 不然的话无法使用gzip功能

include       mime.types;
    default_type  application/octet-stream;
 
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
 
    #access_log  logs/access.log  main;
 
    sendfile        on;
    #tcp_nopush     on;
 
    #keepalive_timeout  0;
    keepalive_timeout  65;
 
    gzip on; 
    #开启gzip静态压缩功能
    gzip_static on; 
    #gzip缓存大小
    gzip_buffers 4 16k;
    #gzip http版本
    gzip_http_version 1.1;
    #gzip 压缩级别 1-10 
    gzip_comp_level 5;
    #gzip 压缩类型
    gzip_types text/plain application/javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
    # 是否在http header中添加Vary: Accept-Encoding,建议开启
    gzip_vary on;

4、最后测试的时候最好不要留原来的js和css文件,不然都不知道gzip到底有没有开启成功

5、常见问题
5.1 nginx中配置gzip_static on提示nginx: [emerg] unknown directive “gzip_static“ in
1、此时可用在nginx的安装目录的sbin中使用./nginx -V查看当前nginx的配置信息,看有没有配置–with-http_gzip_static_module

## 配置
./configure --prefix=/usr/local/nginx --with-http_gzip_static_module
## 重新安装
make && make install

./nginx -V后的结果如下:
在这里插入图片描述
2、安装时make && make install报错
在安装Nginx输入make指令时报

src/os/unix/ngx_user.c: In function ‘ngx_libc_crypt’:
src/os/unix/ngx_user.c:36:7: error: ‘struct crypt_data’ has no member named ‘current_salt’
cd .current_salt[0] = ~salt[0];
^
src/http/ngx_http_script.c: In function ‘ngx_http_script_add_copy_code’:
src/http/ngx_http_script.c:698:18: error:cast between incompatible function types from ‘size_t (*)(ngx_http_script_engine_t ){aka ‘long unsigned int ()(struct )} to ‘void ()(ngx_http_script_engine_t ){aka ‘void ()(struct *)} [-Werror=cast-function-type]
code->code = (ngx_http_script_code_pt) ngx_http_script_copy_len_code;

在这里插入图片描述
解决办法:
1、vim /opt/nginx-1.12.2/src/os/unix/ngx_user.c
在这里插入图片描述
2、vim /opt/nginx-1.12.2/objs/Makefile 去掉-Werror
在这里插入图片描述
再重新make && make install 即可

参考:https://www.dandelioncloud.cn/article/details/1601473561787318273
https://blog.csdn.net/qq_24882601/article/details/129384746
https://blog.csdn.net/qq_45697992/article/details/120028370


http://www.kler.cn/a/4088.html

相关文章:

  • HTML应用指南:利用GET请求获取全国特斯拉充电桩位置
  • 寒假1.18
  • mysql 与Redis 数据强一致方案
  • R语言绘图
  • Qiankun 微前端框架全面解析:架构、原理与最佳实践
  • Dart语言的语法
  • 【数据分析之道-基础知识(四)】字典
  • 公司高层有必要考PMP证书吗?
  • CYAT81688如何切换模式
  • IO多路复用的三种实现:select
  • 企业电子招标采购源码之电子招标投标全流程!
  • 社科院与杜兰大学金融管理硕士项目,承载着你读研时光的喜与乐
  • 前端CI篇—重生之前端已死转行运维
  • qt发布程序后在其他电脑无法连接mysql数据库的解决方案
  • Spring源码分析-Bean创建流程三
  • webpack 配置介绍
  • 不再空谈,用 InsCode 展示你的编程实力
  • (QT)常用快捷键与代码风格学习
  • web js代码作业
  • 访问 linux/ubuntu 共享文件夹失败 (及共享文件夹配置)
  • C语言实现栈和队列(动态)
  • [Ubuntu][网络][教程]端口转发以及端口管理
  • 【前推回代法】含有分布式电源的三相不平衡配电网潮流计算【IEEE33节点】(Matlab代码实现)
  • 数据库总结笔记
  • 第三章:Linux环境基础开发工具使用
  • 【云原生】容器编排技术Docker Compose