Fixed HAproxy SSL pass-through so that backend nodes handle HTTPS connections

Change-Id: I20d489024a438ad1d8304c749f328099e683dc14
This commit is contained in:
Adrian Moreno 2015-11-25 13:04:34 +01:00
parent 3d7689eb27
commit ff8575e352
1 changed files with 3 additions and 2 deletions

View File

@ -28,13 +28,14 @@ inherits scaleio_fuel::params {
openstack::ha::haproxy_service { 'scaleio-gateway':
order => 201,
listen_port => 4443,
balancermember_port => 4443,
balancermember_port => 443,
define_backups => true,
before_start => true,
public => true,
haproxy_config_options => {
'balance' => 'roundrobin',
'option' => ['httplog'],
'mode' => 'tcp',
'option' => ['tcplog'],
},
balancermember_options => 'check',
}