これは初歩的な質問です
静的ファイルの有効期限ヘッダーを追加したいと思います。
私は試した :
<static-files>
<include path="/**.png" expiration="4d 5h" />
</static-files>
これをappengine-web.xmlに入れます
しかし、これをエジンに展開するたびに、エンジンはもう機能しません。コードに間違った場所を使用したのでしょうか。
完全なコードは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<!-- REQUIRED: CHANGE THE <application> TAG! -->
<application>myname</application>
<version>1</version>
<static-files> <include path="/**.png" expiration="4d 5h" /> </static-files>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
<property name="com.google.gdata.DisableCookieHandler" value="true"/>
<!-- OPTIONAL: Put in your configuration values in this section. -->
<property name="com.google.ytd.BrandingTag" value=""/>
<property name="com.google.ytd.LinkBackText" value=""/>
<property name="appengine.orm.disable.duplicate.pmf.exception" value="false"/>
<property name="com.google.ytd.RecaptchaPrivateKey" value=""/>
<property name="com.google.ytd.RecaptchaPublicKey" value=""/>
</system-properties>
<ssl-enabled>true</ssl-enabled>
<sessions-enabled>true</sessions-enabled>
<threadsafe>false</threadsafe>
<inbound-services>
<service>mail</service>
</inbound-services>
</appengine-web-app>