diff options
Diffstat (limited to 'plugins/http/config/http.go')
-rw-r--r-- | plugins/http/config/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/http/config/http.go b/plugins/http/config/http.go index 022476e2..d48ed022 100644 --- a/plugins/http/config/http.go +++ b/plugins/http/config/http.go @@ -53,7 +53,7 @@ func (c *HTTP) EnableHTTP() bool { // EnableTLS returns true if pool must listen TLS connections. func (c *HTTP) EnableTLS() bool { - return c.SSLConfig.Key != "" || c.SSLConfig.Cert != "" || c.SSLConfig.RootCA != "" + return c.SSLConfig.Key != "" || c.SSLConfig.Cert != "" } // EnableH2C when HTTP/2 extension must be enabled on TCP. |