diff --git a/roles/haproxy/templates/haproxy.cfg.j2 b/roles/haproxy/templates/haproxy.cfg.j2
index 67a02e7bb0208e57df664fecc9c9986bff1ff74f..107ba0b1321772011fc6b6c8783a8387845eca43 100644
--- a/roles/haproxy/templates/haproxy.cfg.j2
+++ b/roles/haproxy/templates/haproxy.cfg.j2
@@ -27,7 +27,7 @@ listen nifiserv
 	balance source
 	option tcpka
 {% for nifihost in groups['nificontainers'] %}
-	server {{nifihost}} {{nifihost}}:9443 check
+	server {{nifihost}} {{nifihost}}:9443 ssl check verify none
 {% endfor %}
 
 listen odfeserv
@@ -92,9 +92,9 @@ listen nifiservhttp{{port}}
         balance source
         option tcpka
 {% for nifihost in groups['nificontainers'] %}
-        server {{nifihost}} {{nifihost}}:77{{port}} check
-
+        server {{nifihost}} {{nifihost}}:{{port}} check
 {% endfor %}
+
 {% endfor %}
 
 
@@ -109,7 +109,7 @@ listen nifiservtcp{{port}}
         option tcp-check
         tcp-check connect port {{port}}
 {% for nifihost in groups['nificontainers'] %}
-        server {{nifihost}} {{nifihost}}:77{{port}} check
-
+        server {{nifihost}} {{nifihost}}:{{port}} check
 {% endfor %}
+
 {% endfor %}