Moin
ich hab das gleiche Problem.
Das mit dem SuExec-user hab ich auch schon versucht, dann läd zwar die Seite wieder, aber das Zertifikat wird nichtmehr beachtet und im Browser angezeigt.
hier mal meine ssl.conf
Code:
<VirtualHost xxx.xxx.xxx.xxx:443>
ServerName mymcfly.de
DocumentRoot /var/www/virtual/xxxxx.de/htdocs/
ErrorLog /var/log/apache2/users/ssl.xxxxx.de-error.log
TransferLog /var/log/apache2/users/ssl.xxxxx.de-access.log
<IfModule mod_ssl.c>
<IfModule !mod_gnutls.c>
SSLEngine On
SSLProtocol all
SSLCipherSuite HIGH:MEDIUM
SSLCertificateFile /etc/ssl/certs/xxxxxxx.crt
SSLCertificateKeyFile /etc/ssl/private/xxxxxx.key
</IfModule>
</IfModule>
<IfModule mod_gnutls.c>
GnuTLSEnable on
GnuTLSPriorities SECURE:!MD5
GnuTLSCertificateFile /etc/ssl/certs/xxxxxxxx.crt
GnuTLSKeyFile /etc/ssl/private/xxxxxxx.key
</IfModule>
<IfModule suexec_module>
SuexecUserGroup vu2002 vu2002
</IfModule>
<IfModule mod_fcgid.c>
Include /etc/apache2/mods-available/fcgid_ispcp.conf
<Directory /var/www/virtual/xxxx.de/htdocs>
FCGIWrapper /var/www/fcgi/xxxx.de/php5-fcgi-starter .php
Options +ExecCGI
</Directory>
<Directory "/var/www/fcgi/xxxx.de">
AllowOverride None
Options +ExecCGI MultiViews -Indexes
Order allow,deny
Allow from all
</Directory>
</IfModule>
</VirtualHost>