We have a web application that hosts multiple websites for our customers under different domains. All these domains are hosted on an single apache vhost, the logical seperation into different sites is done by the software.
We would like to offer ssl-support for some of these virtual websites. Pricipically that should be no problem, as after an ssl connection is established, the software can use the host: header to route to the correct website.
But: How do I tell apache to serve the correct certificate, depending on the requested host?
Is there a possibity to map certs to domains, e.g. with something like:
SSLCertificateFile file
All help is appreciated!