I created the simple Node.js express tutorial and it runs locally. I setup my Azure Web App to pull the repo from BitBucket, which it does, but I'm getting the following error in LogFiles/Application:
Port 80 requires elevated privileges
Why would this be happening? Isn't node running at elevated privileges? If not, how do I configure it so it is?
UPDATE: IMPORTANT!!!
This is never clearly explained in any documentation that I saw...
Azure appears to be doing port forwarding for node.js applications. So when you hit your Azure URL on port 80/443 it gets forwarded to another port that your node.js application is running on. YOU DO NOT SET THAT PORT!! It is an environment variable managed by Azure so you simple listen at process.env.PORT. Done, that's it.