Skip to content

Commit

Permalink
Revert "frontend"
Browse files Browse the repository at this point in the history
This reverts commit 441696f.
  • Loading branch information
Nicolas Ontiveros committed Nov 17, 2023
1 parent 26d2851 commit d8c84d8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkg/frontend/frontend.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,13 @@ func NewFrontend(ctx context.Context,
PrivateKey: key,
},
},
ClientAuth: tls.RequestClientCert,
NextProtos: []string{"h2", "http/1.1"},
ClientAuth: tls.RequestClientCert,
SessionTicketsDisabled: true,
CurvePreferences: []tls.CurveID{
tls.CurveP256,
tls.X25519,
},
}

for _, cert := range certs {
Expand Down

0 comments on commit d8c84d8

Please sign in to comment.