return error on wrong ssl.type value

This commit is contained in:
Negasus 2022-02-15 11:36:24 +03:00 committed by Umputun
parent a3d0c10302
commit 22bea287e4

View File

@ -404,6 +404,8 @@ func makeSSLConfig() (config proxy.SSLConfig, err error) {
config.ACMEEmail = opts.SSL.ACMEEmail
config.FQDNs = fqdns(opts.SSL.FQDNs)
config.RedirHTTPPort = redirHTTPPort(opts.SSL.RedirHTTPPort)
default:
return config, errors.New("wrong ssl.type value, use 'none', 'static' or 'auto'")
}
return config, err
}