Does anybody knows how can I run an Angular 2 app where I can access the app over http and https I mean run listening in two ports 80 and 443 ?
Here is the deal
I have an app that I can run with a ssl certificate, so in order access the app over https I have de following configuration:
"serve": {
"port": 443,
"host": "0.0.0.0"
}
But that limits me to access the app only in port 443 or in other words over https but I need to access the app over http too I mean port 80.
Thanks in advance