summaryrefslogtreecommitdiff
path: root/server.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2022-03-18 21:41:17 +0100
committerTor Andersson <tor@ccxvii.net>2022-03-18 21:41:34 +0100
commitc411fe9734041e30422208357e49877d58d8db67 (patch)
tree79b0f5ddd0d78b8591a3408de639961031a19b68 /server.js
parent6863e07e6efd9c7b5cd8c0191b506698c155f3a4 (diff)
downloadserver-c411fe9734041e30422208357e49877d58d8db67.tar.gz
Set mime-type and max-age for AVIF images.
Diffstat (limited to 'server.js')
-rw-r--r--server.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/server.js b/server.js
index fd05b6d..9342d80 100644
--- a/server.js
+++ b/server.js
@@ -99,8 +99,10 @@ function login_delete(res, sid) {
* Web server setup.
*/
+express.static.mime.define({ "image/avif": ["avif"] });
+
function set_static_headers(res, path) {
- if (path.match(/\.(jpg|png|svg|webp|ico|woff2)$/))
+ if (path.match(/\.(jpg|png|svg|avif|webp|ico|woff2)$/))
res.setHeader("Cache-Control", "max-age=86400");
else
res.setHeader("Cache-Control", "max-age=60");