App Engine - 如何为静态文件设置“Vary:Accept-Encoding”标头

时间:2010-07-02 18:04:19

标签: google-app-engine

Google Page Speed说。

  

以下可公开缓存的可压缩资源应具有“Vary:Accept-Encoding”标头:

我的css和js文件。

如何设置谷歌应用引擎来执行此操作?

3 个答案:

答案 0 :(得分:3)

the docs开始,只需在app.yaml中为所需的处理程序添加http_headers(对于Python):

- url: /static
  static_dir: static
  http_headers:
    Vary: Accept-Encoding

答案 1 :(得分:2)

Google App Engine尽可能尝试提供compressed content。因此,只要客户遵循链接中的指导原则,您就不必做任何事情。

答案 2 :(得分:0)

在GAE中使用Python语言时,可以设置静态内容的返回标头。详情请见Static Directory Handlers