Reputation: 1107
We are trying to add naked domain redirect to our custom domain. I followed the instructions on https:/ /support.google.com/a/answer/2518373?hl=en but when I change the domain to redirect from: http:/ /app-id=,domain=.example.io (which was auto filled) to http://www.example.io, I get an error saying: """ Server error We are unable to process your request at this time, please try again later. """ I'm not able to dig any deeper into the error or what is happening. My A records on the DNS provider point to the IP address specified by the App Engine. I also have SSL on this app, and https://www.example.io works fine. Its only https://example.io that gives me "Error code: ERR_CONNECTION_CLOSED" error.
Upvotes: 3
Views: 1443
Reputation: 9516
As of September 2015, SSL is supported on naked domains by AppEngine.
Upvotes: 2
Reputation: 111
Best free SSL redirect service I found was CloudFlare. To get it working:
https://yourdomain.com/*
to https://www.yourdomain.com/$1
(replace www with any subdomain), make sure the redirect is set to 301.Done. Free and secure SSL redirection for your naked domain.
Upvotes: 2
Reputation: 3564
It seems SSL on naked domains is not currently supported by App Engine. We have a similar issue, so our naked domain redirects to http://www.~
which then redirects to https://www.~
You might like to take a look at (and star) this issue.
Upvotes: 3