change ese web root

This commit is contained in:
Lyn Fugmann 2024-10-06 20:37:13 +02:00
parent 9662b35f42
commit 7c86415c50
Signed by: fugi
GPG key ID: 4472A20091BFA792

View file

@ -1,6 +1,7 @@
{ config, ... }:
let
domain = "ese.${config.networking.domain}";
webRoot = "/srv/web/ese";
in
{
services.nginx = {
@ -10,12 +11,12 @@ in
return = "302 /2024/";
};
locations."/" = {
root = "/srv/web/ese/served";
root = webRoot;
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";
root = webRoot;
extraConfig = ''
expires 1y;
'';