SSL für ein Web über Confixx anlegen
Posted: 2004-02-07 10:51
Ich habe ein Problem beim einrichten von SSL. Eigene IP ist für die Domain bestellt und auch korrekt konfiguriert etc. So. In Confixx schnell den Key und das CSR erstellt, selbst signiert, wieder für das entsprechende Web in Confixx unter SSL reinkopiert, wird akzeptiert, klappt auch wunderbar.
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:
Wäre toll wenn mir dabei jemand helfen würde.
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>