标签:
参考博文: nginx中的超时设置
nginx使用proxy模块时,默认的读取超时时间是60s。
1. send_timeout
syntax: send_timeout the time
default: send_timeout 60
context: http, server, location
Directive assigns response timeout to client. Timeout is established not on entire transfer of answer, but only between two operations of reading, if after this time client will take nothing, then nginx is shutting down the connection.
这2个参数一起配合,来控制nginx怎样认为upstream中的某个server是失效的当在fail_timeout的时间内,某个server连接失败了max_fails次,则nginx会认为该server不工作了。同时,在接下来的 fail_timeout时间内,nginx不再将请求分发给失效的server。
个人认为,nginx不应该把这2个时间用同一个参数fail_timeout来控制,要是能再增加一个fail_time,来控制接下来的多长时间内,不再使用down掉的server就更好了~
如果不设置这2个参数,fail_timeout默认为10s,max_fails默认为1。就是说,只要某个server失效一次,则在接下来的10s内,就不会分发请求到该server上
syntax: proxy_connect_timeout timeout_in_seconds
context: http, server, location
This directive assigns a timeout for the connection to the proxyserver. This is not the time until the server returns the pages, this is the proxy_read_timeout statement. If your proxyserver is up, but hanging (e.g. it does not have enough threads to process your request so it puts you in the pool of connections to deal with later), then this statement will not help as the connection to the server has been made. It is necessary to keep in mind that this time out cannot be more than 75 seconds.
syntax: proxy_read_timeout the_time
default: proxy_read_timeout 60
context: http, server, location
This directive sets the read timeout for the response of the proxied server. It determines how long NGINX will wait to get the response to a request. The timeout is established not for entire response, but only between two operations of reading.
In contrast to proxy_connect_timeout, this timeout will catch a server that puts you in it‘s connection pool but does not respond to you with anything beyond that. Be careful though not to set this too low, as your proxy server might take a longer time to respond to requests on purpose (e.g. when serving you a report page that takes some time to compute). You are able though to have a different setting per location, which enables you to have a higher proxy_read_timeout for the report page‘s location.
If the proxied server nothing will communicate after this time, then nginx is shut connection.
另一个参考:504 Gateway Time-out问题
proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 10m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 4k; proxy_buffers 32 4k; proxy_busy_buffers_size 64k;
由于审标时间长 nginx 配置如下:
user nginx; worker_processes 12; worker_rlimit_nofile 102400; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { use epoll; worker_connections 102400; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘ ‘$status $body_bytes_sent "$http_referer" ‘ ‘"$http_user_agent" "$http_x_forwarded_for"‘; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 2048; send_timeout 2048; fastcgi_connect_timeout 2048; #gzip on; include /etc/nginx/conf.d/*.conf; #设定负载均衡的服务器列表 upstream myServer { #weigth参数表示权值,权值越高被分配到的几率越大 #本机上的apache开8080端口 server 127.0.0.1:8080; # server 192.168.1.101:80 weight=4 max_fails=2 fail_timeout=25s; # ip_hash; } server { listen 80; server_name xxx.com; server_name 1xxx.com; server_name xx.xx.xx.xx; location ~ ^/NginxStatus/ { stub_status on; access_log off; } location / { proxy_pass http://myServer; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; #proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 50m; client_body_buffer_size 512k; proxy_connect_timeout 1024; proxy_send_timeout 960; proxy_read_timeout 900; proxy_buffer_size 128k; proxy_buffers 32 128k; proxy_busy_buffers_size 512k; #stub_status off;#启用nginx状态页 } # 定义错误提示页面 #error_page 500 502 503 504 /50.html; # location = error/50.html { #root /var/www/website; #} } }
标签:
原文地址:http://www.cnblogs.com/wuling129/p/5000229.html