Partial SSL in rails -
I am looking to do a partial SSL site in rail I basically want to protect user functions behind SSL I am but nothing else.
Is there any plugin or gem address that makes it simple and efficient?
This is usually done with the plugin, determining that before_filter S specifies which action requires SSL and which optionally allows it, and which does not specifically permit it.
Outside of it, it's just a matter of setting up 2 VHosts in your Apache (or whatever server you use), for an SSL site and for a non-SSL site.