I followed the steps detailed here to use a custom domain with google app engine.
Now when I go to http://test.mydomain.com
, it redirects to https://test.mydomain.com
and I get an SSL connection error (Unable to make a secure connection to the server.)
I called Google Apps customer support because I have a paid business account, but the customer service guy said that this falls under App Engine support and he was not trained in this issue.
Help!
If you've done everything correctly, you should be able to access your site at http://test.mydomain.com
. It sounds from the error you're getting that you're attempting to access it at https://test.mydomain.com
(https
as opposed to http
).
If you want to access your app over SSL at your custom domain, you have more setup to do, as documented here: SSL for a Custom Domain. The steps necessary are many and subject to change; that link is the official source of current information on the matter.
Update: From your updated information, it sounds like you may have secure: always
set in your app.yaml
, or the Java-configuration equivalent of this setting. It would be helpful if you posted your configuration file.