vote up 0 vote down star

I'm investigating a feature to allow users to point their own domain names at our service to provide a more complete white-lable offering. So, I end up with multiple domains hitting the same IP.

How do I provide SSL security for this? Do I need a cert per domain? UC certs? How would you deploy and manage this in a rails app?

flag

3 Answers

vote up 1 vote down check

We do this with one of our apps (which provides ecommerce). Most customers just have a sub-domain specific account. For those, we have a wildcard certificate.

Some customers have, like you mentioned, custom domains. For those, we require that they purchase the certificate (we recommend GoDaddy because they are cheapest) for their domain. We then provision a new IP address and configure nginx accordingly.

You also have to make sure they are pointing their domain via an A RECORD and not a CNAME (otherwise, it won't hit the right IP).

We host are app on EngineYard so they help out quite a bit.

But, yes, if you're planning on having hundreds or thousands of users with custom domains, that could become a hassle. You may want to look into some type of hybrid setup where non-SSL pages are served via the custom domain but use a generic application domain (with subdomain) for SSL stuff. Like:

http://customdomain.com and http://customdomain.com/contact

and then

https://client.generic.com/purchase

link|flag
vote up 0 vote down

You need an IP per certificate.

I don't think this will be easy, even sites like Shopify have to have the site's SSL pages on a part of the shopify domain to offer SSL, so unless you want to set up an IP address and certificate per domain, I don't think you can do this.

link|flag
vote up 0 vote down

You can either buy a new IP address and SSL certificate for each domain (since each SSL certificate requires its own IP address) or buy a UC certificate with all of the domains in one certificate and use it on just one IP address.

link|flag
Even UC certificates have limits on the number of domains (at least in the link you provided). And it looks like it's $30+ per additional domain. I guess it would help the configuration but it doesn't seem to help the cost. – Callmeed Oct 28 at 19:40
The number included on that page is for the base cost. You can usually add many more names. And $30 to secure an extra domain with an Organization Validation certificate is much better than $100 per domain if you get one certificate for each domain. – Robert Nov 2 at 15:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.