Skip to content

Instantly share code, notes, and snippets.

@justinph
Created January 22, 2014 19:45
Show Gist options
  • Save justinph/8565994 to your computer and use it in GitHub Desktop.
Save justinph/8565994 to your computer and use it in GitHub Desktop.
How to tell Akamai to set the expires headers downstream
# This is what Akamai will see and respect
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 5 minutes"
</IfModule>
# This is what downstream clients will see and respect
<IfModule mod_headers.c>
Header set Edge-control "downstream-ttl=365d"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment