使用模块 ngx_http_gzip_module 用gzip方法压缩响应数据,节约带宽 一、启用或禁用gzip压缩 gzip on | off; 二、压缩比由低到高:1 到 9, 默认:1 gzip_comp_level level; 压缩比越高,越消耗CPU 三、匹配到客户端浏览器不执行压缩 g ...
分类:
其他好文 时间:
2021-06-03 18:08:25
阅读次数:
0
虽然可以换个思路直接用单选框实现,但是有时候非要用复选框实现单选效果,可能是因为需要复选框的样式或者别的原因 这里是kettle中SQLFileOutput组件的两个选项,要实现单选 <el-form :model="row"> <el-col :span="24"> <el-form-item l ...
分类:
其他好文 时间:
2021-06-03 18:05:12
阅读次数:
0
* Official English Documentation: http://nginx.org/en/docs/ * Official Russian Documentation: http://nginx.org/ru/docs/ #==基础配置==# user nginx; #设置运行用户 ...
分类:
其他好文 时间:
2021-06-03 18:04:40
阅读次数:
0
题目链接 中石油补题 题意: 给出你2n2n的方阵,让你从其中选出nn个点,使得他们两两点的距离不是根号下a也不是根号下b 思路: 首先我们看两点之间的距离:设两点x为x轴差,y为y轴差,那么我们之间的距离: \(dis^2=x^2+y^2\) 那么我们对其$dis^2$进行分析 首先我们知道$di ...
分类:
其他好文 时间:
2021-06-02 20:07:22
阅读次数:
0
SPN(Service Principal name)服务器主体名称。SPN 是服务在使用 Kerberos 身份验证的网络上的唯一标识符,它由服务类、主机名和端口组成。在使用 Kerberos 身份验证的网络中,必须在内置计算机帐户(如 NetworkService 或 LocalSystem)或 ...
分类:
数据库 时间:
2021-06-02 19:59:30
阅读次数:
0
启动nginx服务时如果遇到这个错误 Job for nginx.service failed because the control process exited with error code. See “systemctl stat 可能原因如下: 1.nginx配置文件有错误 运行下面命令查 ...
分类:
其他好文 时间:
2021-06-02 19:50:08
阅读次数:
0
spring: #thymeleaf thymeleaf: cache: false prefix: classpath:/templates/ check-template-location: true suffix: .html encoding: utf-8 mode: HTML #这个是关键 ...
分类:
编程语言 时间:
2021-06-02 19:47:35
阅读次数:
0
默认nginx不开启缓存 open_file_cache off; nginx可以缓存以下三种信息: (1) 文件元数据:文件的描述符、文件大小和最近一次的修改时间 (2) 打开的目录结构 (3) 没有找到的或者没有权限访问的文件的相关信息max=N:可缓存的缓存项上限;达到上限后会使用LRU算法实 ...
分类:
其他好文 时间:
2021-06-02 19:44:50
阅读次数:
0
环境介绍 RHEL8 nginx 192.168.92.129 RHEL8 myxql 192.168.92.130 RHEL8 php 192.168.92.131 nginx配置 //关闭服务器和selinux [root@nginx ~]# systemctl disable --now fi ...
分类:
其他好文 时间:
2021-06-02 19:38:14
阅读次数:
0
平滑升级的步骤 1. 获取之前的编译参数 2. 下载新模块 3. 重新编译软件,加上--add-module=新模块的解压路径 4. 备份原程序并停止服务 5. 把原程序用新程序覆盖 6. 启动新程序 Nginx信号简介 主进程支持的信号 TERM, INT: 立刻退出 QUIT: 等待工作进程结束 ...
分类:
其他好文 时间:
2021-06-02 19:37:54
阅读次数:
0