24 lines
469 B
Text
24 lines
469 B
Text
let nu_daemon_schema = import "schemas/platform/nu-daemon.ncl" in
|
|
|
|
{
|
|
provisioning_daemon | nu_daemon_schema.DaemonConfig = {
|
|
server = {
|
|
host = "0.0.0.0",
|
|
port = 9095,
|
|
workers = 2,
|
|
},
|
|
daemon = {
|
|
enabled = true,
|
|
poll_interval = 60,
|
|
max_workers = 2,
|
|
},
|
|
logging = {
|
|
level = "info",
|
|
file = "/tmp/nu-daemon.log",
|
|
},
|
|
actions = {
|
|
auto_cleanup = false,
|
|
auto_update = false,
|
|
},
|
|
},
|
|
}
|