Reputation: 801
Which command to use to expose my local Angular app running on HTTPS:
https://localhost:4200
Usually I use ngrok http --host-header=rewrite 4200
with Angular apps when it's just http
.
Upvotes: 2
Views: 2295
Reputation: 801
The correct command to expose a local https
server is :
ngrok http -host-header="localhost:4200" https://localhost:4200
Upvotes: 0