RE: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-05 Thread Axel-Stéphane SMORGRAV
: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] More than one name-based vhost with SSL Axel-Stéphane SMORGRAV wrote: > In your conf below, you use the same certificate in both VH although the > ServerName are different. > >All requests will be handled by the grundfunk VH r

Re: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Steffen Ronalter
Axel-Stéphane SMORGRAV wrote: In your conf below, you use the same certificate in both VH although the ServerName are different. All requests will be handled by the grundfunk VH regardless of whether you request grundfunk.de or ronalter.de. If you add CustomLog /etc/apache2/log/grundfunk_

Re: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Steffen Ronalter
Hi! [EMAIL PROTECTED] wrote: Is this any good? http://www.onlamp.com/pub/a/apache/2005/02/17/apacheckbk.html very helpful website, thanks! - The official User-To-User support forum of the Apache HTTP Server Project. See h

Re: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Steffen Ronalter
Hi Axel-Stéphane! Axel-Stéphane SMORGRAV wrote: The same server certificate is presented by both sites and the CN does not match any of the FQDN. Therefore you get a security warning on both URLs. That's what's wrong. Ok. Up to now I thought the warning is not importent for my purposes...

RE: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Axel-Stéphane SMORGRAV
To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] More than one name-based vhost with SSL On Wed, 4 Jan 2006, Axel-Stéphane SMORGRAV wrote: > In your case you have the same certificate specified in both VHs, but > since that certificate does not match the ServerName n

RE: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Nick Burch
On Wed, 4 Jan 2006, Axel-Stéphane SMORGRAV wrote: In your case you have the same certificate specified in both VHs, but since that certificate does not match the ServerName nor the ServerAlias of any of the VHs, you will always get a security warning no matter what. The only way around this

RE: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Axel-Stéphane SMORGRAV
How can I possibly have lived for so long without knowing about that web site? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 04, 2006 5:37 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] More than one name-based vhost with

RE: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Axel-Stéphane SMORGRAV
the VHs, you will always get a security warning no matter what. -ascs -Original Message- From: Axel-Stéphane SMORGRAV Sent: Wednesday, January 04, 2006 5:45 PM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] More than one name-based vhost with SSL In your conf below, you use

RE: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Axel-Stéphane SMORGRAV
: [EMAIL PROTECTED] More than one name-based vhost with SSL NameVirtualHost *:443 ServerName grundfunk.de ServerName grundfunk.de ServerAlias www.grundfunk.de DocumentRoot /var/www/grundfunk SSLEngine on SSLCertificateFile/etc/apache2/ssl/server.crt SSLCertificateKeyFile /etc/apache2/ssl/server.key

Re: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread httpd2
Is this any good? http://www.onlamp.com/pub/a/apache/2005/02/17/apacheckbk.html Keith On Wed, 4 Jan 2006, Steffen Ronalter wrote: > To: users@httpd.apache.org > From: Steffen Ronalter <[EMAIL PROTECTED]> > Subject: [EMAIL PROTECTED] More than one name-based vhost w

RE: [EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Axel-Stéphane SMORGRAV
lf. -ascs -Original Message- From: Steffen Ronalter [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 04, 2006 5:30 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] More than one name-based vhost with SSL Hi! First: I've read the docs and now I know that it can't

[EMAIL PROTECTED] More than one name-based vhost with SSL

2006-01-04 Thread Steffen Ronalter
Hi! First: I've read the docs and now I know that it can't work. But my setup seems to work: check it out! https://ronalter.de https://grundfunk.de both are on the same machine with only one IP address. What's the fault in my thought? My config: -