I have a Django app running on Google App Engine.
I want that all the requests for static content will be served not by the Django app but a Google Cloud Storage bucket on which I've already uploaded all the content that the app needs.
The storage bucket has public access and I can see the static content with the browser with urls like this:
https://storage.googleapis.com/my-bucket/static/image.jpg
Basically what I need to know is how to configure the app.yaml file so that requests like these:
https://www.mydjangoapp.com/static/image.jpg
will be served by the storage: https://storage.googleapis.com/my-bucket/static/image.jpg
With Ngix/Apache this is a standard thing, but how can I achieve this on GCP? I did not find a working solution on the documentation. Thanks