I have some images in Google Cloud Storage that I want to cache through the standard browser cache. So, in file object metadata field I wrote:
Cache-control : public, max-age=300, no-transform.
But when I get the image by generated URL the cache header reads:
cache-control: no-cache, no-store, max-age=0, must-revalidate.
Why does it happen and how can I fix it?
