Manager
All manager settings fall under [manager]
.
[manager]
log_level = "trace"
access = "group"
log_file
Specifies an alternative path to use when logging information while the manager is running.
String representing the path to the file.
[manager]
log_file = "/path/to/file.log"
log_level
Specifies the log level used when logging information while the manager is running.
String representing the level. [default: info] Choices are off, error, warn, info, debug, trace.
[manager]
log_level = "info"
access
Level of access control to the unix socket or windows pipe that the manager creates and listens on for requests.
String representing the access level. [default: owner]
owner
- read & write for owner (0o600
).group
- read & write for owner and group (0o660
).anyone
- read & write for owner, group, and other (0o666
).
[manager]
access = "group"
unix_socket
Alternative unix domain socket to listen on (Unix only).
String representing the path to the socket file.
[manager]
unix_socket = "/path/to/distant.sock"
windows_pipe
Alternative name for a local named Windows pipe to listen on (Windows only).
String representing the name of the local Windows pipe.
[manager]
windows_pipe = "some_name"