nginx设置超时时间
时间: 2023-09-26 07:11:19 浏览: 50
详解Nginx服务器中配置超时时间的方法
5星 · 资源好评率100%
在 nginx 中,可以通过 `proxy_connect_timeout`、`proxy_send_timeout` 和 `proxy_read_timeout` 这三个指令来设置代理连接、发送和读取的超时时间,分别对应连接超时、发送超时和响应超时。
例如,可以在 nginx 的配置文件中添加以下指令来设置代理连接超时时间为 30 秒,发送超时时间为 60 秒,读取超时时间为 120 秒:
```
proxy_connect_timeout 30s;
proxy_send_timeout 60s;
proxy_read_timeout 120s;
```
这些指令可以在 `http`、`server` 或 `location` 块中使用,具体使用位置视具体情况而定。
阅读全文