Questions tagged [google-app-engine]

Google App Engine is a cloud computing technology for hosting web applications in Google-managed data centers.

Google App Engine is a cloud computing technology for hosting web applications in Google-managed data centers.

Google App Engine lets you run your web applications on Google's infrastructure; applications are easy to build, easy to maintain, and easy to scale as your traffic and data storage needs grow. With App Engine, there are no servers to maintain: You just upload your application, and it's ready to serve your users.

401 questions
1
vote
1 answer

"Report-To" HTTP header implementation for GAE Standard

I'm attempting to add a "Report-To:" HTTP header to our App Engine's app.yaml configuration file for integration with https://report-uri.com (based on the Reporting API here, here, and here) but when I push the changes to the repository, Cloud Build…
1
vote
1 answer

Google-appengine-standard - routing via vpc_access_connector

We're trying to get our GAE standard app connected through one of our VPC's which is being used to connect to our VPN clients. VPC (rsvpn) runs openvpn as a client, connecting to our OpenVPN subnet. It is configured with ip_forward and is setup to…
1
vote
1 answer

GAE stackdriver debugger "The debugger could not find a debug target for the application" error

I have deployed a flex aspcore app on GAE and now want to debug it. Unfortunately the stackdriver debugger page is not letting me go further with the following error "The debugger could not find a debug target for the application MyApplication -…
1
vote
1 answer

Strange reverse proxy behavior

My goal is to setup http/https proxy for redirectinspector. Google App Engine has some geo zones so I'm using this. I created server used nodejs and deployed used standard environment. As I saw in stackdriver app engine does not give access. It…
1
vote
2 answers

gcloud no space left on device

My deployment was not successful with gcloud error log as. error building image: error building stage: write /kaniko/888833023: no space left on device Finished Step #1 Do I need to increase space? how can I do it. On doing df Filesystem …
1
vote
1 answer

AppEngine - Client closed keepalive connection

I have deployed my Symfony 4 app to Google App Engine (Flexible environment). The build seems to have worked, but loading the app on in Chrome results in error: Oops! An Error Occurred The server returned a "500 Internal Server Error". Something is…
1
vote
2 answers

Set ASPNETCORE_ENVIRONMENT in Google Cloud Flex App

I have an error in my asp.net core 2.1 app and would like to set the ASPNETCORE_ENVIRONMENT setting to Development so that I can better debug. There are samples for the appsettings.json file, but the ones I find specify IIS Express and I do not know…
Nick
  • 109
  • 1
1
vote
2 answers

App Engine Flexible and VPNs

Can an App Engine Flexible app use a Cloud VPN connection set up in another project and, if so, is that implemented with a shared VPC or peered VPCs? App Engine Flex app in Project 1 | \- [MAGIC] | \- VPN set up in Project 2 …
drumboots
  • 111
  • 5
1
vote
2 answers

SQLSTATE[HY000] [2002] No such file or directory, google cloud app engine flexible

I am trying to connect cloud sql with google cloud app engine flexible. My code is as bellow: $dsn = getenv('MYSQL_DSN'); $user = getenv('MYSQL_USER'); $password = getenv('MYSQL_PASSWORD'); try { $db = new PDO($dsn, $user, $password); …
1
vote
2 answers

google cluster giving authentication scope error

I have a free tier account but whenever i try to create a container cluster i am getting below error from one of the script (gcloud.container.clusters.create) ResponseError: code=403, message=Request had insufficient authentication scopes. for…
1
vote
0 answers

GAE instances sometimes unavailable (502). Console says, “VM restarting”

I have several services which have very little load (several requests per week sometimes). During periods of constant use there appears to be no problems. But after a period of being idle instances appear to be spun down. Web console shows that…
1
vote
1 answer

Why cname appengine app always redirect to www.google.com?

I have a appengine app and google app account. I have CNAME the domain name to the appengine app successful two months ago. I find that CNAME fail to direct to the appengine app now, but the appengine app is OK. It always direct to Google site.…
ricky
1
vote
1 answer

Modify running GAE flex node app

We wanted to make a quick change to a running GAE application to enable logging of queries to trace a bug. SSH'ing into a running instance it can be hard to find where the app code is stored due to the use of docker. While these instructions allow…
ChrisJ
  • 295
  • 1
  • 10
1
vote
1 answer

gcsfuse in Google App Engine flexible custom runtime

I'm trying to use gcsfuse to mount GCS buckets in a docker container deployed in a GAE flexible custom runtime instance. This is part of the Dockerfile: FROM gcr.io/google-appengine/python RUN apt-get -y update RUN apt-get -y install…
dablak
  • 111
  • 1
1
vote
0 answers

Why does app engine return a 404 error on my wildcard subdomain?

I have set up a wildcard subdomain for our project custom domain in app engine. The DNS CNAME has also been updated with the wildcard record. Our nameservers are with Cloudflare which supports wildcard CNAME. However, when a subdomain is entered in…