Ubuntu 20.04
Sponsored Link

HAProxy : SSL/TLS Setting2020/09/04

 
Configure HAProxy with SSL/TLS connection.
The connection between HAproxy and Clients are encrypted with SSL/TLS.
On this example, in addition to previous basic HTTP Load Balancing setting, add settings for SSL/TLS.
-----------+---------------------------+--------------------------+------------
           |                           |                          |
           |10.0.0.30                  |10.0.0.51                 |10.0.0.52
+----------+-----------+   +-----------+----------+   +-----------+----------+
|   [ dlp.srv.world ]  |   | [ node01.srv.world ] |   | [ node02.srv.world ] |
|        HAProxy       |   |      Web Server#1    |   |      Web Server#2    |
+----------------------+   +----------------------+   +----------------------+

[1]
[2] Configure HAProxy.
concatinate cert and key

root@dlp:~#
cd /etc/letsencrypt/live/dlp.srv.world

root@dlp:/etc/letsencrypt/live/dlp.srv.world#
cat fullchain.pem privkey.pem > haproxy.pem

root@dlp:~#
root@dlp:~#
vi /etc/haproxy/haproxy.cfg
# add into frontend section (if not need to listening 80 port)

frontend http-in
        bind *:80
        bind *:443 ssl crt /etc/letsencrypt/live/dlp.srv.world/haproxy.pem 

root@dlp:~#
systemctl restart haproxy

[3] Verify working normally to access to the frontend HAproxy Server.
Matched Content