Is there a decent guide/tutorial on how to properly use https and ssl
in a Rails app?
Say I want people to do all the account stuff via
https://secure.domain/account
So, all the stuff in the Account controller is protected
And a couple actions in the Store controller is also done via https:
https://secure.domain/store/purchase
How could I set that up?
Thanks,
Joe