首页
系统
Android
Mac&iOS
Windows
Debian
Ubuntu
CentOS
ProxmoxVE
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
大模型
博客
Office
Docker
Nginx
MySQL
MongoDB
工具
IP查询接口
随笔
归档
动态
留言
关于
过客
累计撰写
417
篇文章
累计创建
55
个标签
累计收到
0
条评论
栏目
首页
系统
Android
Mac&iOS
Windows
Debian
Ubuntu
CentOS
ProxmoxVE
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
大模型
博客
Office
Docker
Nginx
MySQL
MongoDB
工具
IP查询接口
随笔
归档
动态
留言
关于
目 录
CONTENT
以下是
Nginx
相关的文章
Nginx 限制ip并发数及请求速度
1. 限制单IP并发访问数量 nginx中ngx_http_limit_conn_module模块用于限制连接数量,特别是来自单个IP地址的连接数量。并非所有的连接都被计数。只有当服务器处理了请求并且已经读取了整个请求头时,连接才被计数。 http { limit_conn_zone $bi
2020-09-02
5
0
0
Nginx
Nginx 负载均衡策略
Nginx 反向代理的负载均衡中,内置了 轮询、IP分配、URL hash、最小连接、响应时间等几种策略算法 负载均衡的配置为: http { # ... 省略其它配置 upstream myserver { # 默认为轮询算法 server 192.
2020-07-04
6
0
0
Nginx
Nginx Too many open files
在使用Nginx做转发时遇到了连接不上的情况,查看error日志发现一堆的Too many open files报错 2020/06/10 12:47:49 [crit] 21453#21453: *77340 open() "/usr/share/nginx/html/50x.html" fail
2020-06-10
6
0
0
Nginx
Nginx: [emerg] bind() to 0.0.0.0:xxxx failed (13: Permission denied)
在CentOS7环境中安装了nginx后,启动的时候报错nginx: [emerg] bind() to 0.0.0.0:6080 failed (13: Permission denied)。从字面意思上来说,这是权限不足。但出现这种错误可能有多种原因导致的。 1. 端口小于1024时 当端口小于
2020-06-04
5
0
0
Nginx
Nginx转发阿里云内网Redis
修改Nginx配置文件,加入流转发 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log inf
2019-10-17
5
0
0
Nginx
1
2