来自官方 nginx 文档的定义fail_timeout
如下:
* the time during which the specified number of unsuccessful attempts to communicate with the server should happen to consider the server unavailable;
* and the period of time the server will be considered unavailable.
我的问题是,一个单独的请求的超时时间是多少,之后请求被标记为不成功,这个超时值是如何定义的?
如果max_fails=3
和fail_timeout=120
,这是否意味着如果请求在 120/3 秒后超时,则请求不成功?