parent
f7aa32cd05
commit
a4939d78fe
@ -0,0 +1,11 @@
|
||||
{
|
||||
"url": "http://127.0.0.1:4567",
|
||||
"secret": "catsRkool",
|
||||
"database": "redis",
|
||||
"port": 4567,
|
||||
"redis": {
|
||||
"host": "127.0.0.1",
|
||||
"port": "6379",
|
||||
"database": "0"
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
'use strict';
|
||||
|
||||
var async = require('async');
|
||||
var db = require('../database');
|
||||
|
||||
module.exports.ping = function (req, res, next) {
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
db.getObject('config', next);
|
||||
},
|
||||
function () {
|
||||
res.status(200).send(req.path === '/sping' ? 'healthy' : '200');
|
||||
},
|
||||
], next);
|
||||
};
|
Loading…
Reference in New Issue