I am trying to deploy a node.js app to Google Compute and have supervisord run it.
I have it working just fine when I try to have the app listen on port 3000.
When I try to move it to 443 so that I can use https so access the server it gives me errors when starting the app:
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.status(200).send('API online');
});
app.listen(443, function () {
console.log(`API online`);
});