From cafd620911e2e1459771c214be6aef05300b6ce7 Mon Sep 17 00:00:00 2001 From: obazoud Date: Sat, 15 Oct 2011 10:39:04 +0200 Subject: [PATCH] node.de --- README.md | 4 +++- settings.js | 23 +++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d01766..f08d75b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ Status Dashboard Status Dashboard is status page for your configured services or applications. -See the [Nodester](http://nodester.com) demo: [http://statusdashboard.nodester.com](http://statusdashboard.nodester.com) +Demo: +* @ [Nodester](http://nodester.com) demo: [http://statusdashboard.nodester.com](http://statusdashboard.nodester.com) +* @ [No.de](https://no.de) demo: [http://statusdashboard.no.de](http://statusdashboard.no.de) Screenshots ======= diff --git a/settings.js b/settings.js index 7a89293..9f8f01e 100644 --- a/settings.js +++ b/settings.js @@ -173,6 +173,29 @@ exports.create = function() { }] }; + settings['no.de'] = { + hostname: '0.0.0.0', + port: 80, + services: [{ + name: 'bazoud.free.fr - test1', + label: 'Olivier Bazoud blog test1', + check: 'http', + host: 'bazoud.free.fr', + port: '80', + path: '/', + headers: { + 'Host': 'bazoud.free.fr' + } + }, { + name: 'bazoud.free.fr - test2', + label: 'Olivier Bazoud blog test2', + check: 'http', + host: 'bazoud.free.fr', + port: '80', + path: '/test.php' + }] + }; + var mySettings = defaults; // logger.log("Dumping defaults:\r\n" + JSON.stringify(mySettings));