Rails SSL on only one specific path

I am trying to enable rails SSL on one specific path. The rest of the website should display in http.

This connection is also made between the rails server and the Android device. The android device must send its information in SSL using its own generated certificate.

Is this possible in Rails or not?

+3
source share
1 answer

You should try ssl_requirement gem. It allows you to perform certain actions under SSL.

+1
source

All Articles