Nginx 错误错误
host not found in upstreamhost not found in upstream — 上游主机解析失败
Nginx 无法解析 upstream 块中指定的主机名。
nginxserver
查看详情 429 Too Many Requests客户端在规定时间内发送了过多请求。
limit_req 模块拒绝了超出配置速率限制的请求。
降低请求频率。在 limit_req_zone 中提高速率限制。添加 burst 参数以应对临时流量峰值。
# Rate limiting config
limit_req_zone $binary_remote_addr zone=one:10m rate=10r/s;
location / {
limit_req zone=one burst=20 nodelay;
}host not found in upstreamNginx 无法解析 upstream 块中指定的主机名。
301 Moved PermanentlyNginx 将客户端永久重定向到新的 URL。
499 Client Closed Request客户端在服务器发送响应之前关闭了连接。
rewrite or internal redirection cycleNginx 检测到无限重定向或重写循环。
SSL_do_handshake() failed与客户端或上游服务器的 SSL/TLS 握手失败。
504 Gateway TimeoutNginx 等待上游服务器响应超时。