O site de nodejs com proxy não está carregando por HTTPS no Apache [duplicado]

1

Eu tenho um servidor de nós em execução em uma porta e estou usando o Apache para passar o proxy para ele. Eu configurei o SSL no host virtual e o HTTP funciona bem, mas o HTTPS atinge o tempo limite e diz Connection Refused

Configuração:

<VirtualHost *:80>
        ServerAdmin [email protected]
        ServerName dl.test.co
        ProxyPass / http://localhost:8004/
        ProxyPassReverse / http://localhost:8004/
</VirtualHost>

<VirtualHost *:443>
        ServerAdmin [email protected]
        ServerName dl.test.co
        ProxyPass / http://localhost:8004/
        ProxyPassReverse / http://localhost:8004/

        SSLEngine on
        SSLProtocol all -SSLv2
        SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM

        SSLCertificateFile /etc/apache2/ssl/ssl.crt
        SSLCertificateKeyFile /etc/apache2/ssl/ssl.key
        SSLCertificateChainFile /etc/apache2/ssl/sub.class1.server.ca.pem
</VirtualHost>
    
por Rob 20.10.2015 / 14:46

1 resposta

0

Não tinha o proxy 443 através do nosso firewall. Doh!

    
por 20.10.2015 / 14:53