I launched a node.js server with the following line to set the port:
app.set(\'port\', process.env.PORT || 8080);
This means that, it shoul
You can't. Heroku sets the PORT variable that you are supposed to bind, and listens on tcp/80.