update error message

This commit is contained in:
Negasus 2022-02-15 11:56:59 +03:00 committed by Umputun
parent 22bea287e4
commit 4126fa7993

View File

@ -405,7 +405,7 @@ func makeSSLConfig() (config proxy.SSLConfig, err error) {
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, fmt.Errorf("Invalid value \"%s\" for SSL_TYPE. Allowed values are: none, static or auto", opts.SSL.Type)
}
return config, err
}