Reputation: 4745
I have a simple rack app that is serving up a static file. I need to use SSL locally for development purposes. Any way to do with with rack?
Upvotes: 3
Views: 248
Reputation: 16226
I'd just grab the tunnels
gem, then fire up an SSL proxy using that:
sudo tunnels 443 9292
Upvotes: 5