From 8af1b259f51ae6ddc46436de32b54e808a19d43d Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 13 Jun 2025 11:52:10 +0200 Subject: [PATCH] Enable public-inbox service in tent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Aleix Boné Reviewed-by: Aleix Roca Nonell --- m/tent/configuration.nix | 1 + m/tent/nginx.nix | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/m/tent/configuration.nix b/m/tent/configuration.nix index 043554f0..bf18f911 100644 --- a/m/tent/configuration.nix +++ b/m/tent/configuration.nix @@ -11,6 +11,7 @@ ./nix-serve.nix ./gitlab-runner.nix ./gitea.nix + ../hut/public-inbox.nix ]; # Select the this using the ID to avoid mismatches diff --git a/m/tent/nginx.nix b/m/tent/nginx.nix index 72a28adf..0e6811af 100644 --- a/m/tent/nginx.nix +++ b/m/tent/nginx.nix @@ -45,6 +45,10 @@ in proxy_pass http://127.0.0.1:5000; proxy_redirect http:// $scheme://; } + location /lists { + proxy_pass http://127.0.0.1:8081; + proxy_redirect http:// $scheme://; + } location /grafana { proxy_pass http://127.0.0.1:2342; proxy_redirect http:// $scheme://;