Skip to content

Commit

Permalink
Merge pull request #314 from ngrok/josh/tls-forwarding-renegotiation
Browse files Browse the repository at this point in the history
tunneldriver: add Renegotiation to forwarding tls config
  • Loading branch information
jrobsonchase authored Oct 16, 2023
2 parents 351b2ca + 22d68ab commit b0f0cfa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/tunneldriver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ func handleConn(ctx context.Context, dest string, protocol string, dialer Dialer
next = tls.Client(next, &tls.Config{
ServerName: host,
InsecureSkipVerify: true,
Renegotiation: tls.RenegotiateFreelyAsClient,
})
}

Expand Down

0 comments on commit b0f0cfa

Please sign in to comment.