Https and ssl

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

Hi Joe,

[email protected] wrote:

Is there a decent guide/tutorial on how to properly use https and ssl
in a Rails app?

A quick google on ‘rails ssl tutorial’ turned up

hth,
Bill

There’s also an ssl_requirement plugin on:

http://dev.rubyonrails.org/svn/plugins/ssl_requirement/

HTH
Trevor