Re: Virtual Hosts + SSL (Strange setup)
> I currently have an apache setup with 4 name based virtual hosts. I
> need to add a single ssl host, which obviously could be distinguished
> by the server based on its being on port 443 instead of 80. My
> question is thus: is it possible to configure apache to handle this,
> perhaps defining an ip-based virtual host? If it matters, the server
> is running on an OpenBSD3.3 box (x86, though there is a redundant
> Sparc). I have no experience with ip based vhosts; any ideas/methods
> would be greatly appreciated.
NameVirtualHost ip:80
<VirtualHost ip:80>
ServerName x
....
</VirtualHost>
<VirtualHost ip:80>
ServerName y
....
</VirtualHost>
<VirtualHost ip:80>
ServerName z
....
</VirtualHost>
<VirtualHost ip:443>
ServerName x
....
</VirtualHost>
or so...
joachim
|