通过 HAProxy 转发 SSL 流量和身份验证证书

通过 HAProxy 转发 SSL 流量和身份验证证书

我的客户端有一个 nginx,我可以使用以下命令成功发布:

curl -v --cacert ca.crt --cert client.crt --key client.key -POST https://nginx:8443/api/ -H 'Content-Type: application/json' -H 'cache-control: no-cache' [email protected]

现在我在 nginx 前面安装了 haproxy,并尝试以相同的方式执行 POST,但没有成功:

curl -v --cacert ca.crt --cert client.crt --key client.key -POST http://haproxy:8443/api/ -H 'Content-Type: application/json' -H 'cache-control: no-cache' [email protected]

错误:

 <center>The plain HTTP request was sent to HTTPS port</center>
 <hr><center>nginx</center>

这是我的 haproxy 配置:

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                    tcp
  log                     global
  option                  tcplog
  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  main *:8443
  acl url_static       path_beg       -i /static /images /javascript /stylesheets
  acl url_static       path_end       -i .jpg .gif .png .css .js
  use_backend static          if url_static
  default_backend             app

backend static
  balance     roundrobin
  server      static 127.0.0.1:8443 

backend app
  mode       tcp
  balance     roundrobin
  server  nginx nginx01:8443            

我想通过 HAProxy 转发 SSL 流量并将用于身份验证的证书传递给 nginx。我知道拥有两个 LB 没有任何意义,但我无法修改 nginx 和背后的 api 服务器,但客户端将是内部的。正如您所见,此时我可以访问 nginx,但 haproxy 不会将请求中的证书和密钥传递给 nginx 后端。我遗漏了什么吗?这是我可以实现的吗?

附言:如果我在后端设置“ssl verify none”,我会收到“未发送所需 SSL 证书”的提示。如果我在后端设置“send-proxy”,我会从 nginx 收到“400 Bad Request”的提示。

答案1

您需要将 ssl 配置添加到 haproxy 并设置一些将转发到 nginx 的标头。

# your other config from above
 
backend app
  mode       tcp
  balance     roundrobin
  server  nginx nginx01:8443 ssl ca-file <The ca from nginx backend>

答案2

实施的解决方案是使用 SS/TLS 直通https://www.haproxy.com/documentation/haproxy/deployment-guides/tls-infrastructure/ 将前端和后端都设置为 tcp 模式,我能够传递证书和 nginx 验证并进行身份验证。

相关内容