Estou lançando um novo site no servidor Ubuntu 14.04 no ec2 e no apache 2.4, ele está funcionando normalmente na porta 80 para http, mas no https ele dá:
Chrome:
echo.web.com sent an invalid response.
ERR_SSL_PROTOCOL_ERROR
Firefox:
Error code: SSL_ERROR_RX_RECORD_TOO_LON
Em meus registros do apache2 other_vhosts_access.log
:
serverhostname:80 my.local.ip - - [01/Jan/2018:21:41:29 +0000] "\x16\x03\x01" 400 0 "-" "-"
Por alguma razão, o servidor responde a qualquer solicitação https do navegador com http simples!
Meu virtualhost.conf:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName echo.web.com
DocumentRoot /var/www/testing/
</VirtualHost>
<VirtualHost x.x.x.x:443>
ServerAdmin webmaster@localhost
ServerName echo.web.com
DocumentRoot /var/www/testing
SSLEngine On
SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
SSLCertificateFile /etc/ssl/web.com/STAR_web_com.crt
SSLCertificateKeyFile /etc/ssl/web.com/web.com.key
SSLCertificateChainFile /etc/ssl/web.com/ca-bundle.crt
#
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</VirtualHost>
ssl mod está ativado e o certificado é válido,
Alguma ajuda, por favor?