📝 docs: add links and default values for proxy timeout
This commit is contained in:
parent
044d125712
commit
41b01a569f
1 changed files with 4 additions and 6 deletions
|
@ -700,13 +700,11 @@ In some scenarios is required to have different values. To allow this we provide
|
||||||
- `nginx.ingress.kubernetes.io/proxy-next-upstream-tries`
|
- `nginx.ingress.kubernetes.io/proxy-next-upstream-tries`
|
||||||
- `nginx.ingress.kubernetes.io/proxy-request-buffering`
|
- `nginx.ingress.kubernetes.io/proxy-request-buffering`
|
||||||
|
|
||||||
If you indicate [Backend Protocol](#backend-protocol) as `GRPC` or `GRPCS`, the following values will be applied to gRPC connection as well:
|
If you indicate [Backend Protocol](#backend-protocol) as `GRPC` or `GRPCS`, the following grpc values will be set and inherited from proxy timeouts:
|
||||||
|
|
||||||
```
|
- [`grpc_connect_timeout=5s`](https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_connect_timeout), from `nginx.ingress.kubernetes.io/proxy-connect-timeout`
|
||||||
grpc_connect_timeout {{ proxy_connect_timeout }}
|
- [`grpc_send_timeout=60s`](https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_send_timeout), from `nginx.ingress.kubernetes.io/proxy-send-timeout`
|
||||||
grpc_send_timeout {{ proxy_send_timeout }}
|
- [`grpc_read_timeout=60s`](https://nginx.org/en/docs/http/ngx_http_grpc_module.html#grpc_read_timeout), from `nginx.ingress.kubernetes.io/proxy-read-timeout`
|
||||||
grpc_read_timeout {{ proxy_read_timeout }}
|
|
||||||
```
|
|
||||||
|
|
||||||
Note: All timeout values are unitless and in seconds e.g. `nginx.ingress.kubernetes.io/proxy-read-timeout: "120"` sets a valid 120 seconds proxy read timeout.
|
Note: All timeout values are unitless and in seconds e.g. `nginx.ingress.kubernetes.io/proxy-read-timeout: "120"` sets a valid 120 seconds proxy read timeout.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue