机架 ssl 不适用于 Thin

发布于 2024-11-30 14:40:20 字数 342 浏览 0 评论 0原文

我按照以下说明安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赏烟花じ飞满天 2024-12-07 14:40:20

对于 Thin,您可以使用以下选项传递 SSL 信息:

$ thin --help

SSL options:
    --ssl                        Enables SSL
    --ssl-key-file PATH          Path to private key
    --ssl-cert-file PATH         Path to certificate
    --ssl-verify                 Enables SSL certificate verification

如果您想将 Webrick 配置为使用 SSL,这篇文章来自这个问题似乎有效。

For Thin, you can pass your SSL information in using the following options:

$ thin --help

SSL options:
    --ssl                        Enables SSL
    --ssl-key-file PATH          Path to private key
    --ssl-cert-file PATH         Path to certificate
    --ssl-verify                 Enables SSL certificate verification

If you would like to configure Webrick to use SSL, this article from this question seems to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文