ngixn笔记(3)问题记录

记录一下出现的问题及解决方式。修改后记得重启 nginx 服务。
注意:如果运行在容器中,修改了 doeker 中 nginx 配置,通过 IP 访问正常,域名配置使用了 root 目录下的 nginx,需要再配置一次。

413 Request Entity Too Large

错误的原因是 Nginx 默认限制了客户端请求体的大小(默认为 1MB),而上传请求超过了这个限制,可以在 http、server、location 任意一个中添加以下字段:

1
2
3
http {
client_max_body_size 100M; # 允许的最大请求体大小
}

流式数据输出卡顿

在 location 中添加一个参数配置

1
2
3
4
5
6
http {
location /chatApi/ {
proxy_pass http://***/;
proxy_buffering off;
}
}

Request failed with status code 504

通常是由于 Nginx 作为反向代理时,等待后端服务器响应的时间超过了配置的超时时间。

1
2
http {
}