命令:
yum -y install haproxy
配置文件:
/etc/haproxy/haproxy.cfg
其他常用命令:
haproxy在线重启命令:
service haproxy reload
haproxy直接重启命令:
systemctl restart haproxy
haproxy状态查询命令: ...
准备:
ssl证书可自行购买或去七牛云等平台申请免费证书,这里不再过多介绍。
查看是还支持ssl:
haproxy -vv
合成pem证书(申请好的证书下载nginx格式的): cat test.com.crt test.com.key | tee test.com.pem ...