In Express I add expires headers to my static files like this
app.use(function (req, res, next) {
// static folder: css
if (req.url.indexOf('/css/') === 0) {
res.setHeader('Cache-Control', 'public, max-age=345600'); // 4 days
res.setHeader('Expires', new Date(Date.now() + 345600000).toUTCString());
}
});
app.use(express.static(root + '/app'));
What I cannot do is catch the favicon.ico request like this.
Is there a way to add expires header to favicon in Node/Express?
What makes the favicon.ico request so different compared to other static files?
Thx!
You can pass a maxAge
option to both favicon and static middleware :
app.use(express.favicon(__dirname + '/public/favicon.ico', { maxAge: 2592000000 }));
Sources :