ese website caching

This commit is contained in:
Lyn Fugmann 2024-10-06 16:54:32 +02:00
parent fcffa5f79c
commit 161a4ae838
Signed by: fugi
GPG key ID: 4472A20091BFA792

View file

@ -6,12 +6,20 @@ in
services.nginx = {
virtualHosts."${domain}" = {
locations."= /" = {
return = "301 /2024/";
# temporary redirect, to avoid caching problems
return = "302 /2024/";
};
locations."/" = {
root = "/srv/web/ese/served";
tryFiles = "$uri $uri/ =404";
};
# cache static assets
locations."~* \.(?:css|svg|webp|jpg|jpeg|gif|png|ico|mp4|mp3|ogg|ogv|webm|ttf|woff2|woff)$" = {
root = "/srv/web/ese/served";
extraConfig = ''
expires 1y;
'';
};
};
};
}