From 581ae326454ba75aa6a3b4add31fae5df812ffb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Fri, 23 Aug 2024 10:02:13 +0000 Subject: [PATCH] configure nginx as proxypass for docspell --- nginx.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx.nix b/nginx.nix index 18f4626..f461711 100644 --- a/nginx.nix +++ b/nginx.nix @@ -21,6 +21,9 @@ }; "docspell.${base-domain}" = { enableACME = true; + locations."/" = { + proxyPass = "http://localhost:7879"; + }; }; }; };