Show default page

This commit is contained in:
Zalmoxisus
2016-01-21 12:12:47 +02:00
parent 56fda3de2c
commit f12bf148d0
3 changed files with 18 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
var express = require('express');
var router = express.Router();
router.get('', function( req, res ) {
res.send('<html><body>' +
'<p>It works! Now point your app and monitor app to connect to this server.</p>' +
'</body></html>');
});
module.exports = router;