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.
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- Mechanize getting “Errno::ECONNRESET: Connection r
- __call__() missing 1 required positional argument:
- Tomcat and SSL Client certificate
- Upload file to Google Cloud Storage using AngularJ
相关文章
- ssl配置问题
- Intermittent “sslv3 alert handshake failure” under
- Is there a size limit for HTTP response headers on
- appcfg.py command not found
- Making a two way SSL authentication between apache
- Google app engine datastore string encoding proble
- decrypt TLS 1.2 AES-GCM packet
- How to use Jetty with Let's Encrypt certificat
Best free SSL redirect service I found was CloudFlare. To get it working:
https://yourdomain.com/*
tohttps://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.
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 tohttps://www.~
You might like to take a look at (and star) this issue.
As of September 2015, SSL is supported on naked domains by AppEngine.