I've got IIS exposed to the internet. On the same server I've got a NodeJS-app running (port 8080). I need to expose the node app over SSL to the internet.
Is it possible to just switch from Https -> http when doing the reverse proxy call from IIS -> Node?
This would make my life easier because I don't need to support https directly on Node. Hence, I'd only need to install a SSL-cert on the IIS-server.
So in short my plan is:
ssl (443) -> IIS -> - (https -> http) -> NodeJS (8080)
Is this possible?