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;