MonitHub is backed by Kue to perform asynchronous tasks ‒ mostly related to monit instances interaction. According to Kue README:
By default, Kue will connect to Redis using the client default settings (port defaults to 6379, host defaults to 127.0.0.1, prefix defaults to q)
MonitHub users should be able to override these settings on config.js:
var config = {
production: {
// Other stuff
kue: {
prefix: 'q',
redis: {
port: 1234,
host: '10.0.50.20',
auth: 'password',
db: 3, // if provided select a non-default redis db
options: {
// see https://github.com/mranney/node_redis#rediscreateclient
}
}
}
}
}
MonitHub is backed by Kue to perform asynchronous tasks ‒ mostly related to monit instances interaction. According to Kue README:
MonitHub users should be able to override these settings on
config.js: