nginx rate limit
https://www.topjishu.com/12139.html
https://blog.csdn.net/hellow__world/article/details/78658041
Nginx配置之负载均衡、限流、缓存、黑名单和灰度发布
https://www.cnblogs.com/devinzhang/p/7735397.html
nginx内置预定义变量
http://www.nginx.cn/273.html
HTTP请求的502、504、499错误
1.名词解释
502 Bad Gateway:作为网关或者代理工作的服务器尝试执行请求时,从上游服务器接收到无效的响应(伪响应)。
504 Gateway Time-out:作为网关或者代理工作的服务器尝试执行请求时,由于等待响应超时,未能及时从上游服务器收到响应。
499 client has closed connection :客气户端主动断开连接
解决方法proxy_ignore_client_abort on 表示服务端不要主动关闭客户端连接。