Support Center
Key features:
crypto.use_tls
to True, so it reads as below. After changing the file, restart the server.server http_plain--server1 127.0.0.1:17010 \
check inter 2s rise 2 fall 2 \
# ZATO backend bck_http_plain:server--server1
server http_plain--server1 127.0.0.1:17010 \
check inter 2s rise 2 fall 2 \
ssl verify required \
ca-file /path/to/ca.cert.pem \
# ZATO backend bck_http_plain:server--server1
crypto.use_tls
to True crypto.tls_client_certs
to required, so it reads as below. After changing the file, restart the server.server http_plain--server1 127.0.0.1:17010 \
check inter 2s rise 2 fall 2 \
# ZATO backend bck_http_plain:server--server1
ca-file
which points to CA(s) the server certificates are signed off by, and crt
containing the load-balancer's private key and certificate, using the example below as a template. Again, all pieces should be placed on one line which has been broken out into multiple ones for clarity:server http_plain--server1 127.0.0.1:17010 \
check inter 2s rise 2 fall 2 \
ssl verify required \
ca-file /path/to/ca.cert.pem \
crt /path/to/key-cert.pem \
# ZATO backend bck_http_plain:server--server1