proxy_send_timeout 的配置示例
时间: 2023-09-08 12:16:27 浏览: 94
nginx配置优化+负载均衡+动静分离详解.zip_nginx_nginx 负载_优化_优化配置_负载均衡
这是一个代理服务器的配置示例,其中包括 proxy_send_timeout 的设置:
```
http {
# 设置代理服务器的发送超时时间为 10 秒
proxy_send_timeout 10s;
server {
listen 80;
server_name example.com;
# 设置代理服务器的接收超时时间为 20 秒
location / {
proxy_pass http://backend;
proxy_read_timeout 20s;
}
}
upstream backend {
server backend1.example.com;
server backend2.example.com;
}
}
```
请注意,这只是示例配置之一,具体的 proxy_send_timeout 的设置取决于您的特定用例和环境。
阅读全文