Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to enable tls vers. 1.2 in haproxy

I have haproxy doing ssl termination. I have disabled sslv3.

The ssl testers says that I only have tls 1.0 enabled. How can I enable tls version 1.2 in haproxy ?

Thanks

like image 631
David Sedeño Avatar asked Mar 15 '23 17:03

David Sedeño


1 Answers

We can specify these informations in default:

  1. ssl-default-server-options force-tlsv12 It will apply for all server commands in haproxy config

  2. ssl-default-bind-options force-tlsv12 It will apply for all bind command in haproxy config.

like image 52
Dattatraya Kumbhar Avatar answered Mar 17 '23 06:03

Dattatraya Kumbhar