Fabric CA 1.4 官方文档

搭建集群

可以使用任何IP反向代理软件来搭建一个Fabric CA服务器集群。 下面的示例使用Haproxy来将请求路由给一个Fabric CA服务器集群。

haproxy.conf:

global
      maxconn 4096
      daemon

defaults
      mode http
      maxconn 2000
      timeout connect 5000
      timeout client 50000
      timeout server 50000

listen http-in
      bind *:7054
      balance roundrobin
      server server1 hostname1:port
      server server2 hostname2:port
      server server3 hostname3:port

注意,如果使用TLS,需要设置mode tcp