I'm stuck trying to get my node app to run on my EC2 instance. I need to be able to use HTTPS to send and receive the data to my app and when I set the port to 443 in my environment and try to run my app I get
Emitted 'error' event on Server instance at:
at emitErrorNT (net.js:1336:8)
at processTicksAndRejections (internal/process/task_queues.js:84:21) {
code: 'EACCES',
errno: -13,
syscall: 'listen',
address: '0.0.0.0',
port: 443
If I set the port to 3000 however the app runs no problem but I can only transfer via HTTP and then my site gets a mixed content error when it tries to do a GET request. I've checked in my Security Group settings and the port should be open. Any help would be appreciated.