我们正在local.website.com上本地开发我们的应用程序,然后将其上传到staging.website.com,最后上传到live environment - website.com。这是3个不同的服务器。
我们已将以下代码添加到app.yaml:
- url: /static/img
static_dir: static/img
secure: always
expiration: "21d"
http_headers:
Cache-Control: "public, max-age=1814400"
但不幸的是,这个Cache-Control会干扰我们的其他脚本,同时在local.website.com上进行本地构建。
有没有办法为每个子域创建不同的app.yaml,或者在app.yaml周围构建一些逻辑以在local.website.com上禁用缓存?
我们正在使用带有Django框架的Python 2.7。