[google-appengine] Re: 413 NGINX error on large file uploads

2017-11-01 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
The way to circumvent App Engine's 32MB limit is to send the requests directly to Cloud Storage, for instance using the resumable upload process. You can still use App Engine to serve your app, but the clientside

[google-appengine] Re: 413 NGINX error on large file uploads

2017-10-31 Thread Scott Campbell
Hey Yannick, Thanks for your input. In the case that I need to upload files that are larger than 32 MB, what are my options? I was hoping to upload to cloud storage using my app. It was the reason I built it haha. On Tuesday, October 31, 2017 at 3:32:05 PM UTC-4, Yannick (Cloud Platform

[google-appengine] Re: 413 NGINX error on large file uploads

2017-10-31 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello Scott, an App Engine application cannot receive inbound requests that are larger than 32MB . This limit cannot be increased. In order to store large files, you should instead upload them directly to Cloud Storage. Resumable uploads