Google App Engine 1.7.0 available to download(developers.google.com)
developers.google.com
Google App Engine 1.7.0 available to download
https://developers.google.com/appengine/downloads
19 comments
Finally, SSL for custom domains: https://developers.google.com/appengine/docs/ssl
And it costs $99/month. Hmm. (I'm not considering SNI since IMHO it's a non-starter not being supported by XP.)
Lack of custom SSL was the main issue preventing me from considering App Engine for my web service, so I'll definitely have to revisit it to see how it could compare to AWS in production.
Lack of custom SSL was the main issue preventing me from considering App Engine for my web service, so I'll definitely have to revisit it to see how it could compare to AWS in production.
Alternatively I guess you could detect non-SNI browsers and redirect them to appspot.com instead, but that feels a little messy.
I don't see how that could work: they wouldn't even be able to make the SSL connection yet without getting the certificate error, and if the user is willing to accept those then you may as well just keep them on the broken hostname.
I wonder why did this feature take 4 years to happen.
The Cloudflare blog post about how they tried to work-around it is a pretty good explainer on the underlying issue. http://blog.cloudflare.com/ssl-on-custom-domains-for-appengi...
>>>Here's a bit of detail on the core problem. SSL is tied to a particular domain and, usually, an IP address. Managing SSL certificates in an elastic cloud environment is non-trivial. As a result, many cloud providers don't support SSL at all or, like AppEngine, create a wildcard SSL cert for their domain and force everyone who wants SSL to send requests to that. Unfortunately, if you try and make a request to AppEngine from your own domain then the SSL certificate won't validate. We initially thought we could solve this as a proxy just by ignoring SSL errors from the origin, but AppEngine also routes based on the host header. If the host header isn't a subdomain off appspot.org then traffic gets rerouted to the Google home page.
>>>Here's a bit of detail on the core problem. SSL is tied to a particular domain and, usually, an IP address. Managing SSL certificates in an elastic cloud environment is non-trivial. As a result, many cloud providers don't support SSL at all or, like AppEngine, create a wildcard SSL cert for their domain and force everyone who wants SSL to send requests to that. Unfortunately, if you try and make a request to AppEngine from your own domain then the SSL certificate won't validate. We initially thought we could solve this as a proxy just by ignoring SSL errors from the origin, but AppEngine also routes based on the host header. If the host header isn't a subdomain off appspot.org then traffic gets rerouted to the Google home page.
Yay! Google Cloud Storage support for Go: http://code.google.com/p/googleappengine/wiki/SdkForGoReleas...
Only Python Stuff below:
They have depricated the support for djangoforms in the Python SDK, and hence here is my stint trying WTForms with app engine: http://blog.fruiapps.com/2012/06/Modelforms-for-appengine-mo...
I wish they include support for IPython as well. That would make things far more easier and comfortable. I wish
I wish they include support for IPython as well. That would make things far more easier and comfortable. I wish
[deleted]
Heres's the SDK release notes: http://code.google.com/p/googleappengine/wiki/SdkReleaseNote... (Includes the billing details for SSL.)
For a second I thought they were open-sourcing App Engine. Instead this is just a download for the SDK.
you can browse the source if you like: https://code.google.com/p/googleappengine/
appengine is a platform, how would open sourcing it help you? You have a spare datacenter? FWIW there is an opensource clone out there in the wild but you need a cloud infrastructure to run it and it's not up to date with the latest SDK.
Releasing it would allow others to run "appengines" so you could move from one provider to another as you can with "traditional" hosting. Appengine pretty much locks you in. I'm interested to see where OpenShift will lead though. https://openshift.redhat.com/
[deleted]