SSL für ein Web über Confixx anlegen

Apache, Lighttpd, nginx, Cherokee
Post Reply
gevaddertod
Posts: 18
Joined: 2003-11-16 11:40
 

SSL für ein Web über Confixx anlegen

Post by gevaddertod »

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:

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>
Wäre toll wenn mir dabei jemand helfen würde.
gevaddertod
Posts: 18
Joined: 2003-11-16 11:40
 

Re: SSL für ein Web über Confixx anlegen

Post by gevaddertod »

Auch nach der manuellen konfiguration funktioniert es nicht.

Ich brauche dringend Unterstüzung!
andi_s3w
Posts: 7
Joined: 2004-02-10 17:33
 

Re: SSL für ein Web über Confixx anlegen

Post by andi_s3w »

soweit schaut das doch ganz gut aus :-)

hast du den Apache neu gestartet ?

Schau mal was im error_log steht, das gibts meist ganz hilfreiche Hinweise.

Ansonsten kann ich dir noch das howto von 1und1 an Herz legen

http://server.1und1.com/root_server/howto/6.html

Gruss

Andi
Post Reply