[#341] Add "h2" as next proto to allow HTTP/2 requests in http.Serve

Signed-off-by: Alex Vanin <a.vanin@yadro.com>
feature/add_user_tags_in_query
Alexey Vanin 2024-03-27 19:07:06 +03:00 committed by Alexey Vanin
parent a138f4954b
commit 789464e134
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ func newServer(ctx context.Context, serverInfo ServerInfo) (*server, error) {
ln = tls.NewListener(ln, &tls.Config{
GetCertificate: tlsProvider.GetCertificate,
NextProtos: []string{"h2"}, // required to enable HTTP/2 requests in `http.Serve`
})
}