Haproxy 停用安全重新協商

Haproxy 停用安全重新協商

我想在 HAproxy-1.5.2 中停用安全重新協商,但在官方文件中找不到任何有關它的資訊:http://www.haproxy.org/download/1.5/doc/configuration.txt

我的 SSL HAproxy 設定:

tune.ssl.default-dh-param 2048
ssl-default-bind-ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:...

bind :443 ssl crt ./cert.pem no-sslv3

實際上:

root# openssl s_client -connect x.x.x.x:443 |grep "Secure"
Secure Renegotiation IS supported

我想:

root# openssl s_client -connect x.x.x.x:443 |grep "Secure"
Secure Renegotiation NOT supported

有人可以幫我嗎?

相關內容