From a5196a0ce5c51eeafa6e911ddccf5f16d2edae45 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 --- m/tent/nginx.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m/tent/nginx.nix b/m/tent/nginx.nix index de9214e7..731b011f 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/; + } ''; }; };