【发布时间】:2015-09-21 06:50:19
【问题描述】:
我有 haproxy 进行 ssl 终止。我已禁用 sslv3。
ssl 测试人员说我只启用了 tls 1.0。如何在 haproxy 中启用 tls 1.2 版?
谢谢
【问题讨论】:
我有 haproxy 进行 ssl 终止。我已禁用 sslv3。
ssl 测试人员说我只启用了 tls 1.0。如何在 haproxy 中启用 tls 1.2 版?
谢谢
【问题讨论】:
我们可以默认指定这些信息:
ssl-default-server-options force-tlsv12 它将适用于 haproxy config 中的所有服务器命令
ssl-default-bind-options force-tlsv12 它将适用于 haproxy config 中的所有绑定命令。
【讨论】:
...-server-options 和...-bind-options 选项有什么区别?
检查 openssl 的版本。 TLS 1.2 在版本 1.0.x 中。旧版本(例如 Debian Squeeze 中的 0.9.8)仅支持 TLS 1.0。
【讨论】: