Partial SSL in rails
I'm looking to do a partial SSL site in rails. I basically want to protect the user actions behind SSL, but nothing else.
Anyone know of a plugin or gem that makes this simple and efficient?
如果你对这篇文章有疑问,欢迎到本站 社区 发帖提问或使用手Q扫描下方二维码加群参与讨论,获取更多帮助。

评论(3)

ssl_routes gem defines ssl enforcement rule in the route file. It also will automatically output the url with the correct protocol to prevent redirects.


This is typically done with the SSL Requirement plugin. It sets up before_filter
s allowing you to specify which actions require SSL and which optionally allow it, and which specifically do not allow it.
Outside of that, it's just a matter of setting up 2 VHosts in your Apache (or whichever server you use) configuration, one for the SSL site and one for the non-SSL site.
发布评论
需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。