机架 ssl 不适用于 Thin
我按照以下说明安装了 Rails 3.07 的机架 ssl: http ://www.simonecarletti.com/blog/2011/05/configuring-rails-3-https-ssl/
它不起作用。发出第一个 https 请求(针对登录页面),并且安全地提供该页面,但当您登录时,它会重定向到不安全的 http URL。
我正在运行瘦服务器。它适用于瘦吗?韦布里克呢?
有什么想法吗?谢谢。
I installed rack ssl for Rails 3.07 per these instructions: http://www.simonecarletti.com/blog/2011/05/configuring-rails-3-https-ssl/
It is not working. The first https request (for the login page) is made and the page is served securely, but when you login it redirects to a non-secure http URL.
I am running Thin server. Does it work for Thin? What about Webrick?
Any ideas? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Thin,您可以使用以下选项传递 SSL 信息:
如果您想将 Webrick 配置为使用 SSL,这篇文章来自这个问题似乎有效。
For Thin, you can pass your SSL information in using the following options:
If you would like to configure Webrick to use SSL, this article from this question seems to work.