This can be done in one of three ways:
- SNI with a unique certificate per domain (as noted in the techrepublic link)
- Wildcard certificate
- Single certificate, with a lot of subjectAltName entries
The downside of (1) is that it only works with certain browsers.
The downside of (2) is that you probably can't get a wildcard certificate from a trusted CA (and even if you do, *.com doesn't match www.foo.com).
The downside of (3) is that, every time your company gets a new client, you need a new certificate (with the new subjectAltName).
Personally, I'd go with (1).
HTTP_HOST, you mean? – ceejayoz Jan 5 '11 at 22:49