Fix set HTTP TLS ALPN

This commit is contained in:
世界 2023-04-11 11:38:53 +08:00
parent cf778eda4f
commit 53e4302143
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 12 additions and 4 deletions

View file

@ -180,7 +180,7 @@ func NewSTDServer(ctx context.Context, router adapter.Router, logger log.Logger,
tlsConfig.ServerName = options.ServerName
}
if len(options.ALPN) > 0 {
tlsConfig.NextProtos = append(tlsConfig.NextProtos, options.ALPN...)
tlsConfig.NextProtos = append(options.ALPN, tlsConfig.NextProtos...)
}
if options.MinVersion != "" {
minVersion, err := ParseTLSVersion(options.MinVersion)