Skip to content

Commit

Permalink
server: update TLS config to not request a client cert at all
Browse files Browse the repository at this point in the history
This was causing issues on Windows 11, which would give users pop-ups
for them to select a client certificate to send to us.
  • Loading branch information
jgraettinger committed Oct 11, 2024
1 parent 73afb30 commit 0220000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func New(

func BuildTLSConfig(certPath, keyPath, trustedCAPath string) (*tls.Config, error) {
var tlsConfig = &tls.Config{
ClientAuth: tls.VerifyClientCertIfGiven,
ClientAuth: tls.NoClientCert,
}

// Load a presented certificate and key.
Expand Down

0 comments on commit 0220000

Please sign in to comment.