mirror of
https://github.com/caddyserver/caddy.git
synced 2025-04-03 03:49:11 +08:00
proxy: Turn on KeepAlive in QuicConfig of RoundTripper (#1943)
* Turn on KeepAlive in QuicConfig of RoundTripper * Update reverseproxy.go
This commit is contained in:
parent
1ba5512015
commit
c80c34ef45
@ -240,6 +240,7 @@ func NewSingleHostReverseProxy(target *url.URL, without string, keepalive int) *
|
|||||||
rp.Transport = &h2quic.RoundTripper{
|
rp.Transport = &h2quic.RoundTripper{
|
||||||
QuicConfig: &quic.Config{
|
QuicConfig: &quic.Config{
|
||||||
HandshakeTimeout: defaultCryptoHandshakeTimeout,
|
HandshakeTimeout: defaultCryptoHandshakeTimeout,
|
||||||
|
KeepAlive: true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
} else if keepalive != http.DefaultMaxIdleConnsPerHost || strings.HasPrefix(target.Scheme, "srv") {
|
} else if keepalive != http.DefaultMaxIdleConnsPerHost || strings.HasPrefix(target.Scheme, "srv") {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user