tried using reverse proxy instead

This commit is contained in:
Harry 2024-07-16 15:56:00 +02:00
parent a361bff698
commit 3dab5f696b
2 changed files with 9 additions and 2 deletions

View file

@ -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";
};
}
];

View file

@ -113,5 +113,12 @@ in
virtualHosts.":80".extraConfig = ''
reverse_proxy :8082
'';
virtualHosts.":3001".extraConfig = ''
reverse_proxy :3000
'';
virtualHosts.":4001".extraConfig = ''
reverse_proxy :4000
'';
};
}