Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to setup SSL for my heroku app. I am using the hostname based SSL add-on. The heroku documentation states the following:

Hostname based SSL will not work with root domains as it relies on CNAME 
aliasing of your custom domain names. CNAME aliasing of root domains is 
an RFC violation. 

As expected everything works well when I access the site using the www subdomain, i.e. https://www.foo.com. The browser complains when I access https://foo.com as the certificate presented is for heroku.com.

I concluded that I have to redirect the traffic for foo.com to www.foo.com to address this issue. I am considering following approaches:

1) DNS based redirection

The DNS provider Zerigo supports the redirect records. I came across a question on a similar subject on SO. I tried the solution, it works ONLY for HTTP redirection(Zerigo documentation confirms this).

My Zerigo configuration:

foo.com      A             x.x.x.x
foo.com      redirect      http://www.foo.com
www.foo.com  CNAME         zzz.amazonaws.com

2) Rack based redirection

Add a rack based middle-ware to perform the redirection. The canonical-host gem provides such support.

use CanonicalHost do
  case Rails.env.to_sym
    when :staging     then 'staging.foo.com'
    when :production  then 'www.foo.com'
  end
end

I am wondering if there is a better solution for this(barring switching to $100 per month IP based SSL)

share|improve this question

3 Answers

up vote 18 down vote accepted

Wow...this took me forever, and a bunch of info on the web was wrong. Even Heroku's docs didn't seem to indicate this was possible.

But Jesper J's answer provides a hint in the right direction: it works with DNSimple's ALIAS record which I guess is some new sort of DNS record they created. I had to switch my DNS service over to them just to get this record type (was previously with EasyDNS).

To clarify when I say "works" I mean:

  • entire site on SSL using your root domain
  • no browser warnings
  • using Heroku's Endpoint SSL offering ($20/month)

It works for all of the following urls (redirects them to https://foo.com with no warnings)

This blog post provided the right info for me to get it working: http://bigtrapeze.com/2012/05/16/enabling-wildcard-ssl-on-a-heroku-rails-app/

To summarize the important bits.

  1. move your DNS over to DNSimple (if anyone knows other providers offering an ALIAS record please post them in the comments, they were the only one I could find)
  2. setup Heroku endpoint ssl as normal https://devcenter.heroku.com/articles/ssl-endpoint
  3. Back in DNSimple add an ALIAS record pointing foo.com to your heroku ssl endpoint, something like waterfall-9359.herokussl.com
  4. Also add a CNAME record pointing www.foo.com to your heroku ssl endpoint, waterfall-9359.herokussl.com
  5. finally in your rails (or whatever) app make the following settings:

in production.rb set

config.force_ssl = true

in application_controller.rb add

before_filter :check_domain

def check_domain
  if Rails.env.production? and request.host.downcase != 'foo.com'
    redirect_to request.protocol + 'foo.com' + request.fullpath, :status => 301
  end
end

This finally seems to work! The key piece seems to be the ALIAS dns record. I'd be curious to learn more about how it works if anyone knows, and how reliable/mature it is. Seems to do the trick though.

share|improve this answer
2  
Heroku says here that "You must enter a subdomain in the “Host Name” field." because a root-domain certificate is not compatible with Heroku's SSL endpoint. Did you create a root-domain certificate or something like secure.foo.com? And does that affect the request.host check inside check_domain? – Sherwin Yu Sep 4 '12 at 0:33
1  
Can you please confirm if it is actually possible to use a root certificate. – Vezu Sep 16 '12 at 18:38
I used a root certificate. I emailed Heroku Support and they said this seemed to be what people are doing, and it seems to work with a Dnssimple ALIAS record. But they don't want to endorse a particular dns provider so it's not in the official docs. It would be nice if they added something in the docs or here. There may be other performance implications I'm not aware of, so would be curious to hear more on it from their perspective. – Brian Armstrong Oct 23 '12 at 8:35
3  
Can you please confirm if you using a certificate for the root domain foo.com ? Or, are you using a wildcard certificate *.foo.com ? I'm using a certificate for my root domain but my browser keeps saying www.foo.com is not secured. When I close the warningthen it redirects as expected to foo.com and everything works fine there. – Marc M Oct 29 '12 at 21:17
1  
I'm wondering what the code in application_controller does. Does it redirect everything to http://foo.com/? (e.g. https://www.foo.com/ becomes https://foo.com/, and http://waterfall-9359.herokussl.com/ becomes https://foo.com/). If so, you'd need to change this code if you're using subdomains in your app, right? – Jon Lemmon Jan 4 at 5:25
show 1 more comment

DNSimple offers an ALIAS record type to address this need. You can create an alias from your root domain (a.k.a zone apex) pointing to a CNAME. Read more about it here:

http://blog.dnsimple.com/introducing-the-alias-record/

share|improve this answer

DNS redirects wouldn't care whether the inbound request is http or https so would maintain the original protocol - so would redirect http://foo.com to http://www.foo.com and the same for https.

You'll need to do it within the application via the gem you found or some other rack redirect gem or if www. is a problem use the IP based SSL addon.

share|improve this answer
As per Zerigo documentation DNS redirection works ONLY for http. zerigo.com/blog/2009/07/…. My final solution will be a mix of two styles. – Harish Shetty Jul 15 '11 at 15:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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