From 86aede2e4dcff60e1fa3182dfcadb8b1c659efd7 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Fri, 13 Feb 2026 21:52:58 +0100 Subject: [PATCH] fix alias path --- hosts/www/nginx.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/www/nginx.nix b/hosts/www/nginx.nix index 832244a..6032ec7 100644 --- a/hosts/www/nginx.nix +++ b/hosts/www/nginx.nix @@ -31,7 +31,7 @@ in root = "/srv/http/noc"; }; "/twentyyears" = { - alias = "/srv/http/twentyyears"; + alias = "/srv/http/twentyyears/"; }; "/.well-known/matrix/client" = { return = "200 '{\"m.homeserver\":{\"base_url\":\"https://matrix.berlin.ccc.de\"}}'"; @@ -48,7 +48,7 @@ in ''; }; "~ ^/~(.+?)$" = { - alias = "/srv/http/homes/$1"; + alias = "/srv/http/homes/$1/"; extraConfig = '' autoindex on; '';