Is there an easy way to add expires headers to static content coming from an appharbor site? I have a bunch of images, css and javascript files which have no expiry set and are holding me back on yslow.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can do this in Web.config:

<system.webServer>
    <staticContent>
        <clientCache httpExpires="Sun, 29 Mar 2020 00:00:00 GMT" cacheControlMode="UseExpires" />
    </staticContent>
</system.webServer>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.