[google-appengine] Re: Connecting from app engine instance to compute engine instance directly

2017-04-18 Thread Robert Dyas
Has there been any progress on this? On Thursday, May 7, 2015 at 1:52:39 PM UTC-4, Ian Childress wrote: > > We (our Go dev team) want to connect our app engine apps to our compute > engine apps directly using internal IP address. From my understanding > through documentation and exhaustive searc

Re: [google-appengine] App Engine Flex Environment PHP Runtime document root not found

2017-04-18 Thread 'Takashi Matsuo' via Google App Engine
Hi Yao, If you put the index.php in the project root folder, you don't have to add the document_root. Here is the minimum app: ``` $ tree . ├── app.yaml └── index.php 0 directories, 2 files tmatsuo@t-glaptop:~/work/simplestapp$ cat index.php https://my-service-dot-my-app.appspot.com/ If it ret

[google-appengine] Behaviour of NDB put

2017-04-18 Thread Bradley Mclain
Can someone clarify for me the behaviour of the put method on NDB entities? Does it save all properties on the entity or only changed ones? If it does save all properties is there a way to instruct it to only save specific or changed properties? Thanks, Brad -- You received this message becaus

[google-appengine] App Engine Flex Environment PHP Runtime document root not found

2017-04-18 Thread Yao Li
I followed setting in the doc: https://cloud.google.com/appengine/docs/flexible/php/configuring-your-app-with-app-yaml#general There is a index.php file in my project root folder (for example, my project name is project_folder, it's app in the doc), as the above doc, I don't have to change the d

[google-appengine] Re: Google Drive API - Does the API automatically create a folder for our Application.

2017-04-18 Thread 'Adam (Cloud Platform Support)' via Google App Engine
Yes it does, see Storing Application Data , as well as Authorizing requests with OAuth 2.0 for details on the scopes required to access application data in Drive. On Tu

Re: [google-appengine] Request logs and flex

2017-04-18 Thread 'Jisha Abubaker' via Google App Engine
Hi Vinay To get started, I'd recommend looking at this section on Stackdriver logging using java.util.logging https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-logging#add-a-stackdriver-logging-handler-to-a-logger It's on the page that Justin just shared. We're

Re: [google-appengine] Re: gcloud beta logging read creates huge log files in .config

2017-04-18 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Julian, You are encouraged to create an issue tracker entry at http://issuetracker.google.com/, as this issue deserves the direct attention of the developers. Posting there may speed up the research for an eventual resolution. It is worthwhile providing a good use case, to facilitate in

[google-appengine] Re: How to redirect all HTTP traffic to HTTPS in Flex Custom env?

2017-04-18 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
You are correct. *secure* handlers have been deprecated for the App Engine flexible environment. The current recommendation is to use the *Strict-Transport-Security * resp

[google-appengine] Google Drive API - Does the API automatically create a folder for our Application.

2017-04-18 Thread Michael Joyner
Hi out there. We our building our product for Google Drive and I wanted to know if the Google Drive API automatically creates a App Folder like Dropbox does. I know some other Applications that I have like "draw.io" I can see that they create App Folders, or at least I think they do. I know wit

[google-appengine] Re: Unknown project: Firebase Demo Project

2017-04-18 Thread Thanasis Delenikas
Hello Jordan, Thank you very much for the explanation. It all makes sense now. Regards, Thanasis. On Tuesday, April 18, 2017 at 6:36:39 PM UTC+3, Jordan (Cloud Platform Support) wrote: > > The Firebase Demo Project > is a project > ow

[google-appengine] Re: Unknown project: Firebase Demo Project

2017-04-18 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
The Firebase Demo Project is a project owned by Google and is under a Google Billing Account. Therefore it is not your billing account that is charged for its usage and is instead Google that is charged. By default, you are granted ac

[google-appengine] Re: How to redirect all HTTP traffic to HTTPS in Flex Custom env?

2017-04-18 Thread Sergey Shekyan
Answer to myself: handlers are not supported in custom flex environment. Using koa-sslify solved my problem. On Mon, Apr 17, 2017 at 10:41 PM, Sergey Shekyan wrote: > Cannot really figure out how redirect all HTTP traffic to HTTPS with 301 > redirect. >

[google-appengine] How to redirect all HTTP traffic to HTTPS in Flex Custom env?

2017-04-18 Thread Sergey Shekyan
Cannot really figure out how redirect all HTTP traffic to HTTPS with 301 redirect. It is a node app with a Java dependency. In app.yaml added ``` handlers: - url: /.* script: ignored secure: always redirect_http_response_code: 301 ``` but nothing really changes. -- You received