File: haproxy.cfg

package info (click to toggle)
python-stomp 8.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 632 kB
  • sloc: python: 4,176; makefile: 248; xml: 42; sh: 1
file content (14 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
defaults
  mode tcp
  option tcplog

frontend ft_test
  bind 0.0.0.0:65001 ssl crt tmp/myorg.pem crt tmp/mycom.pem no-sslv3 no-tls-tickets
  use_backend bk_com_cert if { ssl_fc_sni my.example.com }
  use_backend bk_org_cert if { ssl_fc_sni my.example.org }

backend bk_com_cert
  server srv1 127.0.0.1:62613

backend bk_org_cert
  server srv2 127.0.0.1:62614