diff --git a/cmd/stdiscosrv/apisrv.go b/cmd/stdiscosrv/apisrv.go index 537647e1c..a30d16918 100644 --- a/cmd/stdiscosrv/apisrv.go +++ b/cmd/stdiscosrv/apisrv.go @@ -83,6 +83,7 @@ func (s *apiSrv) Serve(_ context.Context) error { Certificates: []tls.Certificate{s.cert}, ClientAuth: tls.RequestClientCert, MinVersion: tls.VersionTLS12, + NextProtos: []string{"h2", "http/1.1"}, } tlsListener, err := tls.Listen("tcp", s.addr, tlsCfg)