On 11/14/2012 11:26 PM, Kyle Brandt wrote:
Having trouble getting started with -dev12 and SSL. I have a feeling
this is something obvious, but just not seeing what I am doing wrong
(stripped everything down the the minimal example). If anyone can point
me in the right direction it would much appreciated :-)

Thanks!
Kyle

[root@centos1 haproxy]# cat /etc/haproxy/haproxy.cfg
frontend ft_test
   mode http
   bind 0.0.0.0:443 crt /etc/haproxy/cert/self.pem
# basic conf require only 1 keyword
   default_backend bk_test


Missing 'ssl' keyword on the bind line:

bind 0.0.0.0:443 ssl crt /etc/haproxy/cert/self.pem

You are listening in clear.

Emeric Brun


Reply via email to