Tente colocar
% bl0ck_qu0te%
<IfModule mod_ssl.c>
NameVirtualHost *:443
<VirtualHost *:443>
ServerAdmin [email protected]
DocumentRoot "/var/www/thepeepinghole"
SSLEngine on
...
Editar 1
Só posso dizer: agora tente algo completamente diferente.
Edite o /etc/apache2/ports.conf e adicione a seguinte linha:
Listen 443
Também comente o seguinte em /etc/apache2/ports.conf:
<IfModule mod_ssl.c>
# SSL name based virtual hosts are not yet supported, therefore no
# NameVirtualHost statement here
Listen 443
</IfModule>
Crie um arquivo chamado /etc/apache2/ssl.conf e coloque tudo do seu arquivo postado em questão sem no começo e no final.
<VirtualHost *:443>
ServerAdmin [email protected]
DocumentRoot "/var/www/thepeepinghole"
SSLEngine on
SSLCertificateFile /ssl/14252798.crt
SSLCertificateKeyFile /ssl/private.key
SSLCertificateChainFile /ssl/futureretrogaming.ca-bundle
ServerName www.thepeepinghole.tk
ServerAlias thepeepinghole.tk
ErrorLog "/var/www/thepeepinghole/log/error.log"
CustomLog "/var/www/thepeepinghole/log/access.log" common
<Directory /var/www/thepeepinghole>
DirectoryIndex index.html
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *:443>
ServerAdmin [email protected]
DocumentRoot "/var/www/geekychicgirls"
SSLEngine on
SSLCertificateFile /ssl/14252798.crt
SSLCertificateKeyFile /ssl/private.key
SSLCertificateChainFile /ssl/futureretrogaming.ca-bundle
ServerName www.geekychicgirls.tk
ServerAlias geekychicgirls.tk
ErrorLog "/var/www/geekychicgirls/log/error.log"
CustomLog "/var/www/geekychicgirls/log/access.log" common
<Directory /var/www/geekychicgirls>
DirectoryIndex index.html
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Adicione uma linha de inclusão no /etc/apache2/apache2.conf:
Include "/etc/apache2/ssl.conf"
Reinicie o Apache2 com: apache2ctl restart