Update 'main.js'

This commit is contained in:
Igor Misiorny 2019-11-23 16:49:02 +00:00
parent aa69c13a74
commit b84034958e
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ var http = require('http');
// configure our HTTP server
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello getintodevops.com\n");
response.end("Hello.com\n");
});
// listen on localhost:8000