Avinash Kumar Singh
Avinash Kumar Singh

Reputation: 457

what can be maximum value for timeout for nginix

I was trying to increase the timeout for Nginx ingress.

nginx.ingress.kubernetes.io/proxy-connect-timeout: "180"
nginx.ingress.kubernetes.io/proxy-read-timeout: "180"
nginx.ingress.kubernetes.io/proxy-send-timeout: "180"

I am curious about knowing what maximum value I can have for these timeouts. proxy-connect-timeout, proxy-read-timeout and proxy-send-timeout. I have tried to find it but not able to do so.

Upvotes: 1

Views: 3416

Answers (1)

Arghya Sadhu
Arghya Sadhu

Reputation: 44569

From the docs here

proxy_connect_timeout

Defines a timeout for establishing a connection with a proxied server. It should be noted that this timeout cannot usually exceed 75 seconds

Upvotes: 2

Related Questions