要添加到app.yaml以处理GWT客户端应用程序文件过期的条目?

时间:2013-05-07 10:29:44

标签: google-app-engine gwt app.yaml

Google give以下设置Apache服务器以提供GWT应用程序的示例。

AppEngine(GAE)app.yaml文件的等效条目是什么?

<Files *.nocache.*>
  ExpiresActive on
  ExpiresDefault "now"
  Header merge Cache-Control "public, max-age=0, must-revalidate"
</Files>

<Files *.cache.*>
  ExpiresActive on
  ExpiresDefault "now plus 1 year"
</Files>

1 个答案:

答案 0 :(得分:0)

请参阅https://developers.google.com/appengine/docs/go/config/appconfig#Static_Cache_Expiration

  

到期时间将在Cache-Control和Expires HTTP中发送   响应头,因此,文件可能会被缓存   用户的浏览器,以及中间缓存代理服务器等   作为互联网服务提供商。