So nun fügt Confixx in der confixx_vhost.conf die Virtuellen Server für die SSL Verschlüsselung an, doch leider funktionieren diese nicht. Meine Frage ist wieso das nicht klappt?
Hier einmal sämtliche Virtual Hosts des entsprechenden Webs:
Code: Select all
<VirtualHost 62.75.246.5:80>
DocumentRoot /srv/www/htdocs/web8/html
CustomLog /srv/www/htdocs/web8/log/access_log confixx2
User web8
Group ftponly
ScriptAlias /cgi-bin/ /srv/www/htdocs/web8/html/cgi-bin/
php_admin_value open_basedir /srv/www/htdocs/web8/
php_admin_value upload_tmp_dir /srv/www/htdocs/web8/phptmp/
</VirtualHost>
<VirtualHost 62.75.246.5:80>
ServerName www.j-domain.de
DocumentRoot /srv/www/htdocs/web8/html
User web8
Group ftponly
ScriptAlias /cgi-bin/ /srv/www/htdocs/web8/html/cgi-bin/
CustomLog /srv/www/htdocs/web8/log/access_log confixx2
php_admin_value open_basedir /srv/www/htdocs/web8/
php_admin_value upload_tmp_dir /srv/www/htdocs/web8/phptmp/
</VirtualHost>
<VirtualHost 62.75.246.5:80>
ServerName j-domain.de
Redirect / https://j-domain.de/
</VirtualHost>
NameVirtualHost 62.75.246.5:443
<VirtualHost 62.75.246.5:443>
ServerName j-domain.de
DocumentRoot /srv/www/htdocs/web8/html
User web8
Group ftponly
ScriptAlias /cgi-bin/ /srv/www/htdocs/web8/html/cgi-bin/
CustomLog /srv/www/htdocs/web8/log/access_log confixx2
php_admin_value open_basedir /srv/www/htdocs/web8/
php_admin_value upload_tmp_dir /srv/www/htdocs/web8/phptmp/
<IfDefine SSL>
SSLEngine on
SSLCertificateKeyFile /etc/httpd/ssl.key/web8.key
SSLCertificateFile /etc/httpd/ssl.crt/web8.crt
SetEnvIf User-Agent ".*MSIE.*"
nokeepalive ssl-unclean-shutdown
downgrade-1.0 force-response-1.0
<Files ~ ".(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/srv/www/htdocs/web8/html/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
</IfDefine>
</VirtualHost>