小编Rob*_*ert的帖子

HAProxy 检查端口 443

是否可以让 HAProxy 对 SSL/端口 443 端点进行健康检查?

下面check port 443的配置中的健康检查失败

HAProxy 配置如下

global
    log         127.0.0.1 local2

    chroot      /var/lib/haproxy
    pidfile     /var/run/haproxy.pid
    maxconn     50000
    user        haproxy
    group       haproxy
    daemon

    # turn on stats unix socket
    stats socket /var/lib/haproxy/stats

defaults
    mode                    tcp
    log                     global
    option                  dontlognull
    retries                 3
    timeout queue           1m
    timeout connect         10s
    timeout client          1m
    timeout server          1m
    timeout check           5s
    maxconn                 15000


#---------------------------------------------------------------------
# status page.
#---------------------------------------------------------------------
listen stats 0.0.0.0:8000
    mode http
    stats enable
    stats uri /haproxy
    stats realm …
Run Code Online (Sandbox Code Playgroud)

haproxy

5
推荐指数
1
解决办法
7823
查看次数

标签 统计

haproxy ×1