
Nginx
文章平均质量分 87
Nginx
valisweet
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx+lua+redis实现网关层面服务切换[openresty版]
一、搭建1、下载安装依赖包yum install readline-devel pcre-devel openssl-devel gcc2、下载源码包https://openresty.org/download/openresty-1.13.6.2.tar.gz3、解压安装解压缩安装(将其安装到 --prefix 指定的 /opt/openresty 文件夹下,不指定则会默认到 /usr/local/openresty )tar -zxvfopenresty-1.13..原创 2021-12-12 20:48:55 · 1170 阅读 · 0 评论 -
nginx+web.py+python+uwsgi负载均衡
nginx原创 2018-08-07 23:38:49 · 1293 阅读 · 1 评论 -
linux指令
一、查找全盘查找文件大小在一定范围内的文件find / -size +163840 -a -size -204800-a 即 and的意思find /etc/ -name web* -a -type d/etc目录下查找web开头,且类型是目录的文件夹。-d 即目录-f 即文件find / -name *web* -exec ls -l {}...原创 2018-10-21 13:59:35 · 541 阅读 · 1 评论