HAproxy 开启多核部分503

常规配置中,使用单核稳定运行,开启多核模式后会出现偶发性 503,并且没有 X-Server 响应头信息。

global
    daemon
    # 开启多核出现部分 503
    # nbproc 12
    log 127.0.0.1 local0
defaults
    log global
    mode http
    maxconn 1000000
    timeout tunnel 3600s
    timeout connect 3s
    timeout client 60s
    timeout server 60s
listen stats
  bind :9000
  mode http
  stats enable
  stats realm Haproxy\ Statistics
  stats uri /haproxy_stats
  stats auth admin:123
frontend im-proxy
    log global
    bind *:80
    default_backend server
backend server
    server web1 127.0.0.1:7002 
    http-response set-header X-Server web1
阅读 2.6k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进