29 lines
2.2 KiB
Go
29 lines
2.2 KiB
Go
package args
|
|
|
|
import (
|
|
`io/fs`
|
|
)
|
|
|
|
type Args struct {
|
|
Version bool `short:"v" long:"version" description:"Print the version and exit."`
|
|
DetailVersion bool `short:"V" long:"detail" description:"Print detailed version info and exit."`
|
|
DoDebug bool `env:"CINFO_DEBUG" short:"d" long:"debug" description:"If specified, enable debug logging. This may log a LOT of information."`
|
|
SockMode fs.FileMode `env:"CINFO_FMODE" short:"m" long:"fmode" default:"0o0600" description:"If using a UDS, set the socket file to this permission. This should probably be either 0o0600 or 0o0660."`
|
|
SockDirMode fs.FileMode `env:"CINFO_DMODE" short:"M" long:"dmode" default:"0o0700" description:"If using a UDS, attempt to set the directory containing the socket to use this permission. This should probably be either 0o0700 or 0o0770."`
|
|
SockGrp *string `env:"CINFO_FGRP" short:"g" long:"fgroup" description:"If specified and using a UDS, attempt to set the socket to this GID/group name. (If unspecified, the default is current user's primary group.)"`
|
|
SockDirGrp *string `env:"CINFO_DGRP" short:"G" long:"dgroup" description:"If specified and using a UDS, attempt to set the directory containing the socket to this GID/group name. (If unspecified, the default is current user's primary group.)"`
|
|
Listen ListenArgs `positional-args:"true"`
|
|
}
|
|
|
|
type ListenArgs struct {
|
|
Listen string `env:"CINFO_URI" positional-arg-name:"LISTEN_URI" default:"unix:///var/run/clientinfo/fcgi.sock" description:"The specification to listen on.\nIf the scheme is 'unix', a FastCGI UDS/IPC socket is used (default); any host, query parameters, etc. component is ignored and the URI path is used to specify the socket.\nIf 'tcp', a FastCGI socket over TCP is opened on the <host:port>.\nIf 'http', an HTTP listener is opened on the <host:port>; any path, query parameters, etc. components are ignored.\nHTTPS is unsupported; terminate with a reverse proxy. All other schemes will cause a fatal error.\nThe default is 'unix:///var/run/clientinfo/fcgi.sock'." validate:"required,uri"`
|
|
}
|
|
|
|
type UdsPerms struct {
|
|
UID int
|
|
FGID int
|
|
DGID int
|
|
FMode fs.FileMode
|
|
DMode fs.FileMode
|
|
}
|