From ba3eb1cbfb3009a59ab17730f442505314f5eb6a Mon Sep 17 00:00:00 2001 From: kalipso Date: Tue, 21 Jan 2025 23:21:18 +0100 Subject: [PATCH] [host] proxy grafana.malobeo.org --- machines/durruti/host_config.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/machines/durruti/host_config.nix b/machines/durruti/host_config.nix index 84e46b78..60d1a203 100644 --- a/machines/durruti/host_config.nix +++ b/machines/durruti/host_config.nix @@ -55,6 +55,17 @@ in }; }; + services.nginx.virtualHosts."grafana.malobeo.org" = { + forceSSL = true; + enableACME= true; + locations."/" = { + proxyPass = "http://10.0.0.10"; + extraConfig = '' + proxy_set_header Host $host; + ''; + }; + }; + services.nginx.virtualHosts."status.malobeo.org" = { forceSSL = true; enableACME= true;