ClamAV arguments
This commit is contained in:
10
cmd/cmd.go
10
cmd/cmd.go
@ -111,6 +111,12 @@ var globalFlags = []cli.Flag{
|
||||
Usage: "path to storage",
|
||||
Value: "",
|
||||
},
|
||||
cli.StringFlag{
|
||||
Name: "clamav-host",
|
||||
Usage: "clamav-host",
|
||||
Value: "",
|
||||
EnvVar: "CLAMAV_HOST",
|
||||
},
|
||||
cli.BoolFlag{
|
||||
Name: "profiler",
|
||||
Usage: "enable profiling",
|
||||
@ -170,6 +176,10 @@ func New() *Cmd {
|
||||
options = append(options, server.UseLetsEncrypt(strings.Split(v, ",")))
|
||||
}
|
||||
|
||||
if v := c.String("clamav-host"); v != "" {
|
||||
options = append(options, server.ClamavHost(v))
|
||||
}
|
||||
|
||||
if cert := c.String("tls-cert-file"); cert == "" {
|
||||
} else if pk := c.String("tls-private-key"); pk == "" {
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user