diff options
author | Valery Piashchynski <[email protected]> | 2020-11-18 10:02:58 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-18 10:02:58 +0300 |
commit | a2ba8de5eb519f73044a9b1c66f087a5b65e3d45 (patch) | |
tree | dbcb1649a5ea8f7b50706ffc1cae775f1ef65b42 /plugins/http/config.go | |
parent | 3cbdd3d3e44b3b4e72565d666391e3b732950774 (diff) |
Add Reset
Diffstat (limited to 'plugins/http/config.go')
-rw-r--r-- | plugins/http/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/http/config.go b/plugins/http/config.go index 7922f485..b3f4ca13 100644 --- a/plugins/http/config.go +++ b/plugins/http/config.go @@ -19,7 +19,7 @@ type ServerConfig struct { User string // Relay defines connection method and factory to be used to connect to workers: - // "pipes", "tcp://:6001", "unix://rr.sock" + // "pipes", "tcp://:6001", "unix://pool.sock" // This config section must not change on re-configuration. Relay string @@ -111,7 +111,7 @@ func (c *Config) EnableHTTP() bool { return c.Address != "" } -// EnableTLS returns true if rr must listen TLS connections. +// EnableTLS returns true if pool must listen TLS connections. func (c *Config) EnableTLS() bool { return c.SSL.Key != "" || c.SSL.Cert != "" || c.SSL.RootCA != "" } |