HaProxy - 502 Gateway inválido: HTTP falado na porta HTTPS

6

Vou tentar explicar o meu problema.

Estou trabalhando no HaProxy 1.5.8 / apache 2.2 e tento fazer algumas configurações de SSL, mas falho, falho e falho.

Vamos ver alguns registros:

Logs Haproxy

Aug 13 17:00:28 localhost haproxy[10930]: x.x.x.x - - [13/Aug/2015:15:00:28 +0000] "URLxxxxx HTTP/1.1" 502 +656 "" "" 50567 131 "FT-https-in~" "BK-https-out" "myserver-https" 13 0 1 -1 +17 PH-- 0 0 0 0 0 0 0 "" "" 

Registros de erros do Apache

[Thu Aug 13 17:02:38 2015] [debug] ssl_engine_kernel.c(1903): OpenSSL: Exit: error in SSLv2/v3 read client hello A
[Thu Aug 13 17:02:38 2015] [info] [client haproxy-server] SSL handshake failed: HTTP spoken on HTTPS port; trying to send HTML error page
[Thu Aug 13 17:02:38 2015] [info] SSL Library Error: 336027804 error:1407609C:SSL routines:SSL23_GET_CLIENT_HELLO:http request speaking HTTP to HTTPS port!?

Minha configuração HaProxy:

# - Frontend - HTTPS in
frontend FT-https-in
bind *:443 ssl crt /etc/haproxy/ssl/my_cert.pem
log global
option forwardfor except 127.0.0.1
option httplog clf
option log-separate-errors
option logasap
redirect scheme https if !{ ssl_fc }
default_backend BK-https-out


# - Backend - HTTPS out
backend BK-https-out
mode http
option forwardfor except 127.0.0.1/8 header X-Forwarded-For
log global
option httplog clf
option tcplog
option http-pretend-keepalive
option http-server-close
# pool de serveur du backend
server myserver-https x.x.x.x:443 check

Eu tentei corrigir meu problema com a configuração dos cabeçalhos, como:

 http-request set-header X-Forwarded-Port %[dst_port]
 http-request add-header X-Forwarded-Proto https if { ssl_fc }
 http-request add-header X-Proto https if { ssl_fc }
 http-request set-header X-SSL %[ssl_fc]

Meu arquivo pem é construído assim: crt / key / bundle

Mas a questão ainda está aqui. Se alguém pudesse ter uma ideia para me ajudar!

Obrigado

    
por Ze.Miw 13.08.2015 / 17:23

1 resposta

5

Você precisa dizer ao HAproxy que o servidor de back-end está usando SSL:

server myserver-https x.x.x.x:443 ssl check verify none

A parte 'verify none' diz ao haproxy para não verificar a cadeia de certificados. Eu o incluí, mas pode não ser necessário.

Você não deve precisar de nenhuma das linhas de cabeçalho que você indicou, a menos que você as queira.

    
por 13.08.2015 / 18:13