haproxy绑定多个端口进行https转发

时间:2016-07-20 06:01:19

标签: ssl https haproxy

我试图将2个https端口转发到2个不同的目的地,但是haproxy服务无法启动。当我使用简单的http时,一切都可以。 Haproxy是否支持2个https端口或者出错了什么?以下是我的haproxy配置。

frontend https1
   bind  *:9444 ssl crt /etc/haproxy/ssl/server.pem
   mode http
   use_backend bk1_https

frontend https2
   bind  *:9443 ssl crt /etc/haproxy/ssl/server2.pem
   mode http
   use_backend bk2_https


backend bk1_https
   balance first
   server server1 IP1:9444 check ssl verify none

backend bk2_https
   balance first
   server server1 Ip1:9443 check ssl verify none

0 个答案:

没有答案