Posted On March 29, 2019

HAProxy with Multiple SSL Certs

kimconnect 0 comments
blog.KimConnect.com >> Codes , Linux >> HAProxy with Multiple SSL Certs
Method 1:
———
defaults
  log 127.0.0.1 local0
  option tcplog
 
frontend ft_test
  mode http
  bind 0.0.0.0:443 ssl crt /certs/haproxy1.pem crt /certs/haproxy2.pem
  use_backend bk_cert1 if { ssl_fc_sni dragoncoin.com } # content switching based on SNI
  use_backend bk_cert2 if { ssl_fc_sni kimconnect.com } # content switching based on SNI
 
backend bk_cert1
  mode http
  server srv1 <ip-address2>:80
 
backend bk_cert2
  mode http
  server srv2 <ip-address3>:80

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to transfer files between Windows client to Unix Server

Download PSCP: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html Move the executable to C:\Windows\System32 Run CMD as Administrator and copy files,…

How To Install X11VNC on Ubuntu

# Note: this setup is the quick and dirty method for lab environments # Secured…

PowerShell: Windows Get-EventLog vs Get-WinEvent

Get-Eventlog is the legacy Windows log querying command. Its advanced filtering is limited. Whereas Get-WinEvent,…