HAproxy 开启多核部分503

发布于 2022-09-11 16:08:42 字数 630 浏览 16 评论 0

常规配置中,使用单核稳定运行,开启多核模式后会出现偶发性 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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文