Make HTTP Keep-Alive timeout configurable for backend connections
This commit is contained in:
parent
84d7c65039
commit
f6436663eb
8 changed files with 149 additions and 0 deletions
|
@ -477,6 +477,10 @@
|
|||
The amount of time to wait for a server's response headers after fully writing
|
||||
the request (including its body, if any). If zero, no timeout exists.
|
||||
|
||||
--serverstransport.forwardingtimeouts.idleconntimeout (Default: "90s")
|
||||
The maximum period for which an idle HTTP keep-alive connection to a backend
|
||||
server will remain open before closing itself.
|
||||
|
||||
--serverstransport.insecureskipverify (Default: "false")
|
||||
Disable SSL certificate verification.
|
||||
|
||||
|
|
|
@ -462,6 +462,10 @@ The amount of time to wait until a connection to a backend server can be establi
|
|||
`TRAEFIK_SERVERSTRANSPORT_FORWARDINGTIMEOUTS_RESPONSEHEADERTIMEOUT`:
|
||||
The amount of time to wait for a server's response headers after fully writing the request (including its body, if any). If zero, no timeout exists. (Default: ```0```)
|
||||
|
||||
`TRAEFIK_SERVERSTRANSPORT_FORWARDINGTIMEOUTS_IDLECONNTIMEOUT`:
|
||||
The maximum period for which an idle HTTP keep-alive connection to a backend
|
||||
server will remain open before closing itself. (Default: ```90s```)
|
||||
|
||||
`TRAEFIK_SERVERSTRANSPORT_INSECURESKIPVERIFY`:
|
||||
Disable SSL certificate verification. (Default: ```false```)
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
[ServersTransport.ForwardingTimeouts]
|
||||
DialTimeout = 42
|
||||
ResponseHeaderTimeout = 42
|
||||
IdleConnTimeout = 5
|
||||
|
||||
[EntryPoints]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue