wget http://nginx.org/download/nginx-1.16.1.tar.gz # 解压 tar -xzf nginx-1.16.1.tar.gz cd nginx-1.16.1 # yum升级 yum update # yum安装依赖 yum -y install gcc p ...
分类:
Web程序 时间:
2021-05-24 15:28:40
阅读次数:
0
报错信息: 报错代码: 报错原因: 期望布尔值,得到字符串 1 解决方法: 解决: ...
分类:
其他好文 时间:
2021-05-24 14:19:10
阅读次数:
0
由于目前负责公司 DevOps 平台的前端开发工作的原因,工作中会经常遇到 nginx 服务器相关的维护工作,通过学习和工作实践积累了一些 nginx 服务器的相关配置经验和知识积累。 在之前的《前端性能优化 – 启用 GZip 压缩》一文中就给大家介绍过如何在 nginx 中开启 gzip。并且也 ...
分类:
其他好文 时间:
2021-05-24 14:01:55
阅读次数:
0
Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to tell if a given s ...
分类:
其他好文 时间:
2021-05-24 13:43:08
阅读次数:
0
valgrind使用 valgrind --tool=memcheck --leak-check=full --log-file=valgrind-log.txt ./build/executable --args gdb使用带参数 gdb --args ./build/executable --a ...
分类:
其他好文 时间:
2021-05-24 12:21:49
阅读次数:
0
此博客链接: 检查两个字符串是否相等 题目链接:https://leetcode-cn.com/problems/check-if-two-string-arrays-are-equivalent/ 题目 给你两个字符串数组 word1 和 word2 。如果两个数组表示的字符串相同,返回 true ...
分类:
其他好文 时间:
2021-05-24 12:06:21
阅读次数:
0
尝试做 ingress 实验,发现被畜生的墙拦住下载不了 mandatory.yaml & service-nodeport.yaml。 https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-0.30.0/deploy/st ...
分类:
其他好文 时间:
2021-05-24 11:09:02
阅读次数:
0
Nginx 下载与安装 Nginx 下载地址:http://nginx.org/en/download.html 选择windows版本,我使用的是 nginx/Windows-1.18.0 这个版本 下载完成后, 直接解压缩 将Nginx 添加到服务中去 下载工具 winsw: http://re ...
约束的分类: not null:非空,用于保证该字段的值不 能为空,比如姓名,学号 default:默认,用于保证该字段的默 认值 ,如性别 primary key:主键,用于保证该字段具 有唯一性,非空,如学号 unique:唯一,用于该字段具有唯一性, 可以为空 check:检查约束(mysql ...
分类:
数据库 时间:
2021-05-24 10:29:52
阅读次数:
0
安装nginx 1 sudo apt-get install -y nginx 修改配置文件 1 vi /etc/nginx/nginx.conf 2 #注释掉下面这行代码 3 #include /etc/nginx/sites-enabled/*; 4 #保存 在/etc/nginx/conf.d ...
分类:
系统相关 时间:
2021-05-24 09:40:00
阅读次数:
0