Tento configurar o SSL no meu servidor Web Apache 2.4.12. Mas o Apache2 não consegue encontrar o certificado e o arquivo de chave no diretório SSL correspondente. Já verifiquei as permissões dos arquivos, mas sem sucesso. Os certificados não estão vazios e os mesmos certificados funcionaram em uma instalação SSL do Apache 2.0.64.
aqui a mensagem de erro:
/usr/sbin/apache2 -f /etc/apache2/httpd.conf
AH00526: Syntax error on line 7 of /etc/apache2/mod_ssl.conf:
SSLCertificateFile: file '/etc/apache2/ssl/cert/server.crt' does not exist or is empty
aqui meu mod_ssl.conf
cat mod_ssl.conf
<VirtualHost _default_:443>
# General setup for the virtual host
DocumentRoot "/var/www/"
ServerName 192.168.2.1:443
ServerAdmin [email protected]
SSLEngine on
SSLCertificateFile "/etc/apache2/ssl/cert/server.crt"
SSLCertificateKeyFile "/etc/apache2/ssl/key/server.key"
</VirtualHost>
/etc/apache2/ssl/cert$ ll
drwxrwxrwx 2 www www 232 Jan 1 01:57 .
drwxrwxrwx 4 www www 288 Jan 1 01:54 ..
-rwxrwxrwx 1 www www 863 Feb 10 2015 server.crt
/etc/apache2/ssl/key$ ll
drwxrwxrwx 2 www www 232 Jan 1 01:56 .
drwxrwxrwx 4 www www 288 Jan 1 01:54 ..
-rwxrwxrwx 1 www www 916 Feb 10 2015 server.key
Alguém já se deparou com algo assim antes?