reverseproxy: Make TLS renegotiation optional

pull/4836/head^2^2
Matthew Holt 2022-06-14 09:05:25 -06:00
parent aaf6794b31
commit f9b42c3772
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ func (t TLSConfig) MakeTLSClientConfig(ctx caddy.Context) (*tls.Config, error) {
// Renegotiation
switch t.Renegotiation {
case "never":
case "never", "":
cfg.Renegotiation = tls.RenegotiateNever
case "once":
cfg.Renegotiation = tls.RenegotiateOnceAsClient