码迷,mamicode.com
首页 > Web开发 > 详细

haproxy 配置https

时间:2017-07-06 13:15:40      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:ha

今天测试配置haproxy代理https,一直报错,后来发现,后端已经是https这里则不需要特别指定了

配置文件如下:

global
    log         127.0.0.1 local2
    chroot      /var/lib/haproxy
    pidfile     /var/run/haproxy.pid
    maxconn     4000
    user        haproxy
    group       haproxy
    daemon

    stats socket /var/lib/haproxy/stats

defaults
    mode                    http
    log                     global
    option                  httplog
    option                  dontlognull
    option http-server-close
    option forwardfor       except 127.0.0.0/8
    option                  redispatch
    retries                 3
    timeout http-request    10s
    timeout queue           1m
    timeout connect         10s
    timeout client          1m
    timeout server          1m
    timeout http-keep-alive 10s
    timeout check           10s
    maxconn                 3000



frontend            h5_f
    bind            *:80
    mode            http
    log             global
    use_backend     h5_server


frontend            h5_w
    bind            *:443
    mode            tcp 
    log             global
    use_backend     h5_four

backend h5_four
    mode            tcp
    balance         roundrobin
    server  h5_f1 10.29.25.11:443 weight 1 maxconn 10000 check inter 10s
    server  h5_f2 10.30.20.9:443 weight 1 maxconn 10000 check inter 10s


backend h5_server
    mode            http
    balance         roundrobin
    server  h5_one  10.29.25.11:80 weight 1 maxconn 10000 check inter 10s
    server  h5_tow  10.30.20.9:80 weight 1 maxconn 10000 check inter 10s

如果后端没有配置https则需要

global
    log         127.0.0.1 local2
    chroot      /var/lib/haproxy
    pidfile     /var/run/haproxy.pid
    maxconn     4000
    user        haproxy
    group       haproxy
    daemon

    stats socket /var/lib/haproxy/stats

defaults
    mode                    http
    log                     global
    option                  httplog
    option                  dontlognull
    option http-server-close
    option forwardfor       except 127.0.0.0/8
    option                  redispatch
    retries                 3
    timeout http-request    10s
    timeout queue           1m
    timeout connect         10s
    timeout client          1m
    timeout server          1m
    timeout http-keep-alive 10s
    timeout check           10s
    maxconn                 3000



frontend            h5_f
    bind            *:80
    mode            http
    log             global
    use_backend     h5_server


frontend            h5_w
    bind            *:443 ssl crt /etc/haproxy/ckl.pem
    mode            http 
    log             global
    use_backend     h5_four

backend h5_four
    mode            http 
    balance         roundrobin
    server  h5_f1 10.29.25.11:443 weight 1 maxconn 10000 check inter 10s
    server  h5_f2 10.30.20.9:443 weight 1 maxconn 10000 check inter 10s


backend h5_server
    mode            http
    balance         roundrobin
    server  h5_one  10.29.25.11:80 weight 1 maxconn 10000 check inter 10s
    server  h5_tow  10.30.20.9:80 weight 1 maxconn 10000 check inter 10s


本文出自 “深呼吸再出击” 博客,请务必保留此出处http://ckl893.blog.51cto.com/8827818/1944926

haproxy 配置https

标签:ha

原文地址:http://ckl893.blog.51cto.com/8827818/1944926

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