码迷,mamicode.com
首页 > 其他好文 > 详细

haproxy ssl 配置方式

时间:2016-02-11 06:46:45      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:haproxy

haproxy 代理 ssl 有两种方式


1、haproxy 本身提供ssl 证书,后面的web 服务器走正常的http 


2、haproxy 本身只提供代理,后面的web服务器https


第一种方式


需要编译haproxy 支持ssl,编译参数:    


make TARGET=linux26 USE_OPENSSL=1 ADDLIB=-lz

ldd haproxy | grep ssl

libssl.so.10 => /usr/lib64/libssl.so.10 (0x00007fb0485e5000)

配置参数:


frontend https_frontend

  bind *:443 ssl crt /etc/ssl/certs/servername.pem

  mode http

  option httpclose

  option forwardfor

  reqadd X-Forwarded-Proto:\ https

  default_backend web_server


backend web_server

  mode http

  balance roundrobin

  cookie SERVERID insert indirect nocache

  server s1 192.168.250.47:80 check cookie s1

  server s2 192.168.250.49:80 check cookie s2

 注意:这里的pem 文件是下面两个文件合并而成:

  cat servername.crt servername.key |tee servername.pem

第二种方式配置


不需要重新编译支持ssl,简单方便。需要后面的web服务器配置好ssl 即可。


frontend https_frontend

  bind *:443

  mode tcp

  default_backend web_server


backend web_server

  mode tcp

  balance roundrobin

  stick-table type ip size 200k expire 30m

  stick on src

  server s1 192.168.250.47:443

  server s2 192.168.250.49:443

  

  注意,这种模式下mode 必须是tcp 模式


本文出自 “我的运维时光” 博客,请务必保留此出处http://aaronsa.blog.51cto.com/5157083/1741517

haproxy ssl 配置方式

标签:haproxy

原文地址:http://aaronsa.blog.51cto.com/5157083/1741517

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!