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.

402 questions
6
votes
1 answer

2018... still no way to change the region of an App Engine project or delete it?

Usually i create infrastructure for my customers in GCP with their buckets on GSC, staging servers on GCE, Cloud DNS and i'm very happy with that. But this is the third time the system does not ask me "in which region" I want to create an App Engine…
5
votes
2 answers

How to disable TLS 1.0 for Google App Engine

I've heard it is possible to disable TLS 1.0 and 1.1 with google app engine and custom domain. How can that be done? Mike
Mike Dee
  • 151
4
votes
1 answer

Google Cloud App engine error 502

I'm new to google cloud platform. I have deployed a dotnet core project to App Engine locate Asian-south-1. But start from yesterday, the server always returns Error code 502 with a message. "Error: Server Error The server encountered a temporary…
4
votes
2 answers

google appengine newer versions always error

I've deployed newer versions of a google appengine app but they always return HTTP status code 500, 'The server encountered an error and could not complete your request.Please try again in 30 seconds.' Needless to say I've waited much more than that…
BenTaylor
  • 191
3
votes
0 answers

Inconsistent memcache lookups from different Google AppEngine modules of the same app

We have come across a sporadic inconsistency when doing memcache lookups from different modules (aka "services") within a single AppEngine app (Python). The scenario is as such: Module "portal" creates and later increments integer values for a…
Soeren
  • 131
3
votes
2 answers

Cannot add custom SSL certificate in AppEngine dash

I've followed the instructions provided in the docs to the letter with no luck. I receive Error - The SSL certificate provided could not be inserted. without any additional message as to why. Looking under the hood, the console sends a POST request…
Mansour
  • 499
2
votes
1 answer

How to Protect an App Engine application from BEAST attack

I have a app engine application (standard environment) running on a custom domain with an SSL certificate. I'm trying to make sure it is protected against a BEAST attack. A SSLyze scan shows that my app accepts DES-CBC3-SHA 112 bits as TLS cipher.…
MMA
  • 21
2
votes
1 answer

Google App Engine periodic failures

We have recently noticed that our Google App Engine project was experiencing failures periodically every 25 hours and 10 minutes (1510 mins) for three consecutive days for no apparent reason. During the issue we saw requests failing with the code…
robert
  • 21
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
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
1
vote
1 answer

Using VPN Google APP Engine

I have a VPN with my company through Google Compute Engine. Is it possible to use that VPN with Google APP Engine? How can I connect the app with the VPN? Thanks!
1
vote
1 answer

Appengine - How to allow request only coming from my domain?

I see some requests in the logs coming from unknown sources. So how I could prevent all requests except the ones coming from my appspot domain? Note: This is on appengine, which there is no server from my end to manage, you just upload your app code…
Marwan
  • 111
1
vote
1 answer

GAE TaskQueue error “taskqueue.BulkAdd failed”

Following the documenation here https://cloud.google.com/appengine/docs/standard/php/taskqueue/push/example I decided to do a little testing of TaskQueues within my laravel application. Here is my currecnt test code: $task = new…
McGreeb
  • 11
1
vote
2 answers

Laravel deployment using Google App Engine: No such file or directory

I have followed this tutorial and created a database under the name zoho_portal. My app.yaml contents are: runtime: php env: flex runtime_config: document_root: public # required on some platforms so ".env" is not skipped skip_files: false …
1
vote
1 answer

ModuleNotFoundError: No module named 'main'

I have tried to deploy flask app on Google App Engine Flexible environment. While deploying the app, I got following error. raceback (most recent call last): File "/env/lib/python3.7/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker …
1
2 3 4