From a111d67dc6893327db8479b6742b2feb184d148f Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Sun, 16 Jul 2023 14:48:10 +0200 Subject: [PATCH] added monitoring stuff --- machines/tower/default.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/machines/tower/default.nix b/machines/tower/default.nix index 78a8bce..484b1ac 100644 --- a/machines/tower/default.nix +++ b/machines/tower/default.nix @@ -100,6 +100,30 @@ ''; + services.grafana.enable = true; + services.grafana.settings.server.http_port = 3000; + services.victoriametrics.enable = true; + + services.nginx.virtualHosts."data.julienmalka.me" = { + forceSSL = true; + enableACME = true; + locations."/" = { + proxyPass = "http://localhost:3000"; + proxyWebsockets = true; + }; + }; + + + services.nginx.virtualHosts."prometheus.julienmalka.me" = { + forceSSL = true; + enableACME = true; + locations."/" = { + proxyPass = "http://localhost:8428"; + }; + }; + + + networking.firewall.allowedTCPPorts = [ 80 443 1810 ]; networking.firewall.allowedUDPPorts = [ 80 443 1810 ];