Skip to content

Instantly share code, notes, and snippets.

@jonsherrard
Forked from appleton/static.js
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonsherrard/9609292 to your computer and use it in GitHub Desktop.
Save jonsherrard/9609292 to your computer and use it in GitHub Desktop.
app.use(function(req, res, next) {
if(req.url.indexOf("js/") === 0) {
res.setHeader("Cache-Control", "public, max-age=345600");
}
if(req.url.indexOf("js/") === 0) {
res.setHeader("Cache-Control", "public, max-age=172800");
}
return next();
});
app.use(express.static(path.join(__dirname, 'www')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment