This commit is contained in:
theory 2014-04-01 15:14:11 -06:00
parent 89500af1e7
commit 4ec00f6ba7

View File

@ -10,7 +10,7 @@ var server = http.createServer(function(req, res) {
res.writeHead(200);
res.end('Hello Shift');
});
server.listen(process.env.OPENSHIFT_NODEJS_PORT);
server.listen(process.env.OPENSHIFT_NODEJS_PORT || 8080);
return;