I have a application with UI on Angular and Web API on Nodejs deployed on following Web servers( on the same Windows server say "server1"). Have configured multiple IPs on the server as listed below
- UI -- IIS , listening on 10.250.18.51 with port 80 on server1
- API -- NodeJs , listening on 10.250.18.52 with port 80 on server1. Ultimately will be using Nginx to forward the request to nodejs
Problem Statement
Not able to run both Nodejs and IIS on port 80 even though both listening to different IPs
- IIS error : The port is already used by another process
- NodeJs Error : EACCES, Permission denied
Am I missing something ?
Regards