summaryrefslogtreecommitdiffstats
path: root/roles/haproxy
diff options
context:
space:
mode:
authorPatrick Uiterwijk <puiterwijk@redhat.com>2017-05-12 15:37:09 +0000
committerPatrick Uiterwijk <puiterwijk@redhat.com>2017-05-12 15:37:09 +0000
commit02df22e6c23f30b37c837972b121af7b775cf38d (patch)
tree85656dc21a9040f926205d89bfcea238563eacaa /roles/haproxy
parentcefbb400c38fce08a90bdfbc1f587633a9562c88 (diff)
downloadansible-02df22e6c23f30b37c837972b121af7b775cf38d.tar.gz
ansible-02df22e6c23f30b37c837972b121af7b775cf38d.tar.xz
ansible-02df22e6c23f30b37c837972b121af7b775cf38d.zip
Fix cert validation
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'roles/haproxy')
-rw-r--r--roles/haproxy/templates/haproxy.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/haproxy/templates/haproxy.cfg b/roles/haproxy/templates/haproxy.cfg
index c6ffbcd9c..8aab2534b 100644
--- a/roles/haproxy/templates/haproxy.cfg
+++ b/roles/haproxy/templates/haproxy.cfg
@@ -435,10 +435,10 @@ listen os-master 0.0.0.0:10064
server os-master03 os-master02:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
option httpchk GET /
-listen os-master 0.0.0.0:10065
+listen os-nodes 0.0.0.0:10065
balance hdr(appserver)
- server os-node01 os-node01:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
- server os-node02 os-node02:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
+ server os-node01 os-node01:443 check inter 10s rise 1 fall 2 ssl verify none
+ server os-node02 os-node02:443 check inter 10s rise 1 fall 2 ssl verify none
option httpchk GET /
{% endif %}