bcardarella
bcardarella

Reputation: 4745

Running a simple rack app with SSL on localhost?

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

Answers (1)

pat
pat

Reputation: 16226

I'd just grab the tunnels gem, then fire up an SSL proxy using that:

sudo tunnels 443 9292

Upvotes: 5

Related Questions