mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-02-23 14:53:56 +01:00
tried using reverse proxy instead
This commit is contained in:
parent
a361bff698
commit
3dab5f696b
|
@ -230,7 +230,7 @@ in
|
||||||
"Grafana" = {
|
"Grafana" = {
|
||||||
icon = "grafana";
|
icon = "grafana";
|
||||||
description = "Visualiseur de graphiques";
|
description = "Visualiseur de graphiques";
|
||||||
href = "http://${ip}:3000";
|
href = "http://${ip}:3001";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -244,7 +244,7 @@ in
|
||||||
"Uptime Kuma" = {
|
"Uptime Kuma" = {
|
||||||
icon = "uptimekuma";
|
icon = "uptimekuma";
|
||||||
description = "Surveille l'état des différents services";
|
description = "Surveille l'état des différents services";
|
||||||
href = "http://${ip}:4000";
|
href = "http://${ip}:4001";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -113,5 +113,12 @@ in
|
||||||
virtualHosts.":80".extraConfig = ''
|
virtualHosts.":80".extraConfig = ''
|
||||||
reverse_proxy :8082
|
reverse_proxy :8082
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
virtualHosts.":3001".extraConfig = ''
|
||||||
|
reverse_proxy :3000
|
||||||
|
'';
|
||||||
|
virtualHosts.":4001".extraConfig = ''
|
||||||
|
reverse_proxy :4000
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue