icflorescu / iisexpress-proxy

A simple local proxy for accessing IIS Express from remote machines.
ISC License
741 stars 82 forks source link

SSL Support #3

Closed luisgizirian closed 8 years ago

luisgizirian commented 8 years ago

Hi! Been using it successfully for a while. What about sites running on SSL? Is it possible to bridge those?

icflorescu commented 8 years ago

Bridging to sites running on SSL, as in proxying https://www.bloomberg.com:443 to http://localhost:3000? I think it will, as soon as I'll have a chance to deploy a new version. Hopefully in a couple of hours or so... ;-)

Note that you won't be able to proxy to https://localhost, though. That would involve having a local SSL certificate and would be well out of the scope of this project, anyway.

icflorescu commented 8 years ago

Just finished pushing the repo, so make sure to update your npm installation and see if it works for you. You'll have to use it like this: iisexpress-proxy https://secure-domain.com:443 to 5000 or iisexpress-proxy https://192.168.1.110:443 to 5000

It's important not to omit the https:// part.

luisgizirian commented 8 years ago

Thanks @icflorescu :)