두 개의 다른 SSL 인증서로 HAProxy를 구성해야합니다
- www.example.com
- api.example.com
이제 serverfault ( Haproxy에서 여러 SSL 인증서 구성) 게시물에서 2 개의 인증서를 사용하는 방법을 배웠지 만 서버는 두 도메인 모두에서 언급 된 첫 번째 인증서를 계속 사용합니다.
구성 :
frontend apache-https
bind 192.168.56.150:443 ssl crt /certs/crt1.pem crt /certs/cert2.pem
reqadd X-Forwarded-Proto:\ https
default_backend apache-http
backend apache-http
redirect scheme https if { hdr(Host) -i www.example.com } !{ ssl_fc }
redirect scheme https if { hdr(Host) -i api.example.com } !{ ssl_fc }
...
URL에 따라 사용할 인증서를 HAProxy에 알리는 방법은 무엇입니까?
전체 구성 :
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
ssl-default-bind-options no-sslv3
tune.ssl.default-dh-param 2048 // better with 2048 but more processor intensive
defaults
log global
mode http
option tcplog
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
frontend apache-http
bind 0.0.0.0:80
mode http
option http-server-close # needed for forwardfor
option forwardfor # forward IP Address of client
reqadd X-Forwarded-Proto:\ http
default_backend apache-http
stats enable
frontend apache-https
bind 0.0.0.0:443 ssl crt cer1.pem cert2.pem
reqadd X-Forwarded-Proto:\ https
default_backend apache-http
backend apache-http
redirect scheme https if { hdr(Host) -i db.example.com } !{ ssl_fc }
redirect scheme https if { hdr(Host) -i api2.example.com } !{ ssl_fc }
balance roundrobin
cookie SERVERID insert indirect nocache
server www-1 10.0.0.101:80 cookie S1 check
server www-2 10.0.0.102:80 cookie S2 check
server www-3 10.0.0.103:80 cookie S3 check
전체 구성을 게시 할 수 있습니까?
—
GregL
확실한. 쿼리를 업데이트했습니다.
—
멀린
위의 스니핑 구성에서 두 가지
—
GregL
crt
지시문을 bind
라인 에 나열 하지만 전체 구성에서 하나만 얻습니다 ... 의도입니까? 해당 인증서에 SAN 항목이 있습니까? 아니면 와일드 카드입니까?
죄송합니다. 라인을 제거한 후 구성을 사용했습니다. 내 목표는 개별 도메인에 대한 개별 SSL 인증서를 허용하는 것이며 HAProxy에 익숙하지 않습니다. 위에 나열된 구성에 두 번째 인증서를 추가했습니다.
—
멀린
잘못된 인증서를 제공하는 곳에서 어떤 클라이언트를 사용하고 있습니까?
—
GregL