From 3387cbcc2597db0f56d8da5a9ef2d8f81658e440 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 17 Sep 2025 13:08:48 +0200 Subject: [PATCH] Share a public folder for documents MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Aleix Boné --- m/tent/nginx.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m/tent/nginx.nix b/m/tent/nginx.nix index de9214e..731b011 100644 --- a/m/tent/nginx.nix +++ b/m/tent/nginx.nix @@ -67,6 +67,9 @@ in location /p/ { alias /var/lib/p/; } + location /pub/ { + alias /vault/pub/; + } ''; }; };