Hello I want to put "One Year" of cache on all files, except ìndex.html
that I want Cache-Control: no-cache
But I get :
I expect the last line to override the default_expiration but i get :
cache-control: no-cache
cache-control: public, max-age=31536000
my app.yaml
runtime: nodejs12
default_expiration: '365d'
env_variables:
environment: '--prod'
handlers:
- url: /
static_files: myproject/index.html
upload: myproject/index.html
http_headers:
Cache-Control: no-cache
On the index.html.... both at the same time do you have an idea how to have only the first header ?