diff --git a/features/homelab-dashboard.nix b/features/homelab-dashboard.nix index 3c64f0d..f4c624b 100644 --- a/features/homelab-dashboard.nix +++ b/features/homelab-dashboard.nix @@ -230,7 +230,7 @@ in "Grafana" = { icon = "grafana"; description = "Visualiseur de graphiques"; - href = "http://${ip}:3000"; + href = "http://${ip}:3001"; }; } { @@ -244,7 +244,7 @@ in "Uptime Kuma" = { icon = "uptimekuma"; description = "Surveille l'état des différents services"; - href = "http://${ip}:4000"; + href = "http://${ip}:4001"; }; } ]; diff --git a/server-configuration.nix b/server-configuration.nix index bf14ac6..6b737d4 100644 --- a/server-configuration.nix +++ b/server-configuration.nix @@ -113,5 +113,12 @@ in virtualHosts.":80".extraConfig = '' reverse_proxy :8082 ''; + + virtualHosts.":3001".extraConfig = '' + reverse_proxy :3000 + ''; + virtualHosts.":4001".extraConfig = '' + reverse_proxy :4000 + ''; }; }