View Single Post

  #2 (permalink)  
Old 07-14-2003
Martin C. Petersen
 
Posts: n/a
Default Re: Virtual hosts and SSL?

> I'm trying to setup this apache 1.3 server for virtual hosts, with
> ssl. I've got the normal port 80 working, but the SSL is a bit of a
> mess.

[cut]
> <VirtualHost 192.168.1.100:443>
> ServerName example1.com
> Port 443
> DocumentRoot /httpd/example1
> </VirtualHost>
>
> <VirtualHost 192.168.1.100:443>
> ServerName example2.com
> Port 443
> DocumentRoot /httpd/example2
> </VirtualHost>

AFAIK you can only have _one_ ssl virtual-host per ip-port combination.

> I don't want a certificate or anything, and can put up with the
> warning message from the browser, But I do want a secure connection
> for people to login with.

How is the server supposed to do encryption without a certificate?


Martin