> my haproxy config is
>
> listen swebcluster y.x.51.11:8000
> mode tcp
> balance roundrobin
option ssl-hello-chk
option httpchk HEAD /check.txt HTTP/1.0
> server l1-app y.x.43.197:80 weight 2 maxconn 5000 check
> server l2-app y.x.51.190:80 weight 1 maxconn 5000 check
> ~
> does this have anyconfiguration missing which leads to those errors?
> how would adding a maxconn 1 improve this setup?
> and does this setup keep the https traffic encrypted from haproxy to apache
> and vice-versa?
>From what I understand of your setup, stunnel deciphers the SSL itself,
so between stunnel, haproxy and apache, you'll only see http, not https.
Willy, how can i make the traffic between haproxy and apache to be
https? i was under the impression from the documentation that using the
mode = tcp will help me achieve that?