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

Basic CSS: Override All Other Styles by using Important

<style>body {background-color: black;font-family: monospace;color: green;}#orange-text {color: orange;}.pink-text {color: pink;}.blue-text {color: blue;}</style><h1 id="orange-text" class="pink-text blue-text" style="color:…

PowerShell: Check TCP Connections of Server by Port Numbers

# Check-TCP-Connections.ps1# This function will output progress onto the console as well as returning a…

PowerShell: Kill Processes Remotely

# This function requires 2 parameters: -computerName and -processName function killRemoteProcess{ [cmdletbinding()] param( [string]$computerName=$env:COMPUTERNAME, [parameter(Mandatory=$true)]…
Other project: DragonCoin.com