如何为 HTTPS 服务启用 SSL 会话?

发布于 2024-08-21 17:17:27 字数 268 浏览 4 评论 0原文

以下是这里的最佳答案: SSL 会产生多少开销?

有没有办法优化 SSL简单的 apache SSL 安装?

根据该页面上给出的最佳答案,我推断有某种方法可以通过多个调用设置持久 SSL 会话(其中握手开销较少)。这是正确的吗?

如果是这样,了解如何配置服务器以这种方式工作的最佳资源是什么?

Following on from the best answer here:
How much overhead does SSL impose?

Is there a way to optimise SSL beyond a simple apache SSL install?

From the best answer given on that page I infer that there is some way to set-up persistent SSL sessions over multiple calls (where there is less handshake overhead). Is that correct?

If so, what's the best resource to learn about configuring the server to work that way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

ゝ偶尔ゞ 2024-08-28 17:17:27

SSL 会话缓存是一种优化,您可以通过查看讨论 来为 Apache 进行配置在这里。查看SSLSessionCache指令和相关内容。

这将提高同一客户端在会话超时期间多次访问服务器的使用模式的性能。但是,当该模式更趋向于为众多客户端每个客户端命中一台服务器时,您将不会看到任何加速。

SSL session caching is one optimization, which you can configure for Apache by looking at the discussion here. Look at the SSLSessionCache directive and related.

This will boost your performance for usage patterns that have the same client hitting the server multiple times within the session timeout period. However, when the pattern tends more toward one server hit per client for numerous clients, you won't see any speedups.

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