我知道可以将缓存标头添加到现有的Google Cloud存储桶对象中。
gsutil setmeta -h "Content-Type:text/html" \
-h "Cache-Control:public, max-age=3600" \
-h "Content-Disposition" gs://bucket/*.html
https://cloud.google.com/storage/docs/gsutil/commands/setmeta
这适用于存储桶中的所有现有文件,但新上传的文件不会包含这些缓存标头。
如何告诉Google将此标题添加到添加到存储桶的每个新文件中?
FWIW:我在Rails中使用Carrierwave和Fog,但猜测这与问题无关。