Re: [google-appengine] Re: ? How to implement managed SSL for a pre-existing domain mapping.

2017-09-18 Thread 'Kamran (Google Cloud Support)' via Google App Engine
No. Updating the CNAME to point to *ghs.googlehosted.com *shouldn't interrupt your HTTP service. On Monday, September 18, 2017 at 7:50:12 PM UTC-4, timh wrote: > > Ok > > The cname record is what was there from the many years old mapping. > > I havent changed

Re: [google-appengine] Re: ? How to implement managed SSL for a pre-existing domain mapping.

2017-09-18 Thread timh
Just a bit more background This site was mapped to a google apps domain back in September 2012, that is when the cname record as it currently is was set up. Thanks Tim > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe

[google-appengine] Re: [Node JS] Is it possible to enable CORS

2017-09-18 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
Make sure you have supplied the CORS configuration data with the request, which specifies all the origins and request methods that are allowed to access the buckets. Can you send privately the redacted CORS config and HAR file of the request? -- You received this message because you are

Re: [google-appengine] Re: ? How to implement managed SSL for a pre-existing domain mapping.

2017-09-18 Thread Tim Hoffman
Ok The cname record is what was there from the many years old mapping. I havent changed that as I was concerned we would then lose access to the site. Ignoring the ssl security do you see it changing causing a problem for http Thanks Tim On 19 Sep. 2017 7:46 am, "'Kamran (Google Cloud

Re: [google-appengine] Re: ? How to implement managed SSL for a pre-existing domain mapping.

2017-09-18 Thread 'Kamran (Google Cloud Support)' via Google App Engine
Hello Tim, It looks like that CNAME record of your domain is not correctly configured. Please login to your domain registrar and modify the CNAME record of your domain to point to *ghs.googlehosted.com. *Right now I can see that it's configured incorrectly pointing to ghs.google.com. After

Re: [google-appengine] Re: ? How to implement managed SSL for a pre-existing domain mapping.

2017-09-18 Thread Tim Hoffman
Hi Lorne Here is the link https://issuetracker.google.com/issues/65781183 The DNS changed in cloud console on reverification, and our site is accessible using the name. So I don't have any evidence to suggest it didn't . Regards Tim Hoffman On Tue, Sep 19, 2017 at 1:00 AM, 'Lorne

[google-appengine] Re: Using vision API from appengine python standard environment

2017-09-18 Thread 'Shivam(Google Cloud Support)' via Google App Engine
Standard App Engine Python doesn't support multiprocessing. Consider using App Engine flex if you want to use multiprocessing. Also, this sounds like a good post for public issue tracker as Google Groups discussion forum is meant for

[google-appengine] images.get_serving_url() does not work with cloud storage

2017-09-18 Thread Suresh Jeevanandam
I am trying to serve images stored in cloud storage from appengine python Standard environment. I found the images.get_serving_url() to be the simplest way to do this after some research. But, unfortunately it did not work when deployed. Here is the error message. Am I doing something wrong

[google-appengine] Using vision API from appengine python standard environment

2017-09-18 Thread Suresh Jeevanandam
I am trying to use OCR features of Vision API from Python Standard Environment. I installed using pip into the lib directory. It does not work and fails with this error message. I see few discussions related to this in the github->issues. I am wondering what would be the recommended way to do

[google-appengine] Re: ? How to implement managed SSL for a pre-existing domain mapping.

2017-09-18 Thread 'Lorne Kligerman' via Google App Engine
Tim, are you sure your DNS records have been updated? Could you send me a link to the public issue you logged with more details? Thanks! On Sunday, September 17, 2017 at 8:22:02 AM UTC-7, Mike Hardy wrote: > > Likewise. I posted it here > . > > On

[google-appengine] Re: [Java] 502 Server error

2017-09-18 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello Massimo, you should be able to use Stackdriver Logging to read details about the errors encountered by your App Engine application, is that not the case? Be sure to check the logs for the specific version that is producing these errors. Also, just

[google-appengine] Re: Is Bitnami Wordpress the best option to managing a Wordpress site in Google Cloud?

2017-09-18 Thread Rajesh Kumar
nice ... On Monday, July 17, 2017 at 5:55:52 PM UTC+5:30, Borislav Arapchev wrote: > > Hello!! > I m new here :) > > I have 2 deployments - > > > > *- 1 is in Google Cloud Hosting Console- and 1 in Birnami .* > > What is better for managing a WordPress site? > > and when I transfer my

[google-appengine] [Java] 502 Server error

2017-09-18 Thread Massimo Mandaglio
I'm using GCE (with other Google services for SQL, Storage, ...) for my ERP software developed with Java 8 & PrimeFaces (JSF) running on tomcat. Now I would like to migrate to GAE Flex but I have a problem! Locally i switch from tomcat to jetty 9 and updated the project following the docs and

[google-appengine] Re: [Node JS] Is it possible to enable CORS

2017-09-18 Thread Terry Di Luzio
Hi Kenworth, thank you for your answer. So if I have an error: "Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource" my ExpressJS API CORS config is causing it ? I've tried everything I could to reproduce