Changed response for sample be a bit more clear

This commit is contained in:
sspeiche 2015-06-04 09:57:31 -04:00
parent e8a6c5bd79
commit cd4bd7201b
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ var server = http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('This is a Node.js echo service\n');
res.write('Hello OpenShift World! This is a Node.js-based sample application.\n');
res.write('Host: ' + req.headers.host + '\n');
res.write('\n');
res.write('node.js Production Mode: ' + (nodeEnv == 'production' ? 'yes' : 'no') + '\n');