首页 > web > haproxy

haproxy安装ssl证书 实现https
时间:2021-08-11 14:48:09  点击: 来源:  作者:

准备:
ssl证书可自行购买或去七牛云等平台申请免费证书,这里不再过多介绍。

查看是还支持ssl:
haproxy -vv ​
合成pem证书(申请好的证书下载nginx格式的): cat test.com.crt test.com.key | tee test.com.pem ...

准备:
ssl证书可自行购买或去七牛云等平台申请免费证书,这里不再过多介绍。

查看是还支持ssl:

haproxy -vv

 


合成pem证书(申请好的证书下载nginx格式的):

cat test.com.crt test.com.key | tee test.com.pem



编辑配置文件(以自己实际配置文件位置为准):

vi /etc/haproxy/haproxy.cfg
以下为新增加内容:

#------------------------ test https -------------------------------------
frontend TEST
   bind *:443 ssl crt /etc/haproxy/ssl/
test,com.pem
   mode http
   acl
TEST       hdr_beg(host) -i test.com | www.test.com
   use_backend
TEST       if TEST  

backend
TEST
  mode http
   option   httpchk      HEAD /
TEST/haproxy.html #检测文件以自己的为准
   balance   roundrobin
   server    SVR1         appsvr1:8080 check inter 5s rise 3 fall 3
   server    SVR2         appsvr2:8080 check inter 5s rise 3 fall 3


检查配置文件:

haproxy -c -f  /etc/haproxy/haproxy.cfg
Configuration file is valid


haproxy在线重启命令:
service haproxy reload

haproxy直接重启命令:
systemctl restart haproxy

haproxy状态查询命令:
systemctl status haproxy

”您可通过以下微信二维码,赞赏作者“
 
 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
推荐资讯
linux服务器同步互联网时间
linux服务器同步互联
亚马逊云lightsail服务器使用教程 | 亚马逊云lightsail使用指南
亚马逊云lightsail服
hostdare 4折优惠,直接降价60% 美国洛杉矶低至 $10.4/年 768M内存/1核/10gNVMe/500g流量
hostdare 4折优惠,直接
六类网线cat6a和cat6e的区别
六类网线cat6a和cat6e
相关文章
栏目更新
栏目热门

关于我们 | 广告服务 | 联系我们 | 网站地图 | 免责声明 | WAP | RSS


Copyright © 运维之家 2013-2023