如何在 Amazon EC2 上的 Apache 2.2.12 中关闭 SSLCompression?

如何在 Amazon EC2 上的 Apache 2.2.12 中关闭 SSLCompression?


我在 Amazon EC2 上安装了 Suse,它附带 Apache 2.2.12。我使用 HTTPS 并想关闭 SSLCompression,但它不适用于 Apache 2.2.12。我甚至无法升级 Apache,因为 Amazon 维护的存储库尚未包含 Apache 2.4.3,甚至不包括 Apache 2.2.24。
那么既然我被它困住了,有什么办法可以关闭 Apache 2.2.12 中的 SSLCompression 吗?

答案1

Apache <= 2.2.23 mod_ssl 中没有禁用压缩的选项。

解决此问题的选项有几种:

1)等待Apache 2.2.24并从源代码进行编译: https://issues.apache.org/bugzilla/show_bug.cgi?id=53219

2)使用当前稳定的 Apache 2.2.23,并使用上面链接中的补丁来禁用压缩

3)使用其他前端/代理终止 SSL(例如 nginx 或 pound)

相关内容