mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-02-23 06:43:57 +01:00
tried using reverse proxy instead
This commit is contained in:
parent
a361bff698
commit
3dab5f696b
|
@ -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";
|
||||
};
|
||||
}
|
||||
];
|
||||
|
|
|
@ -113,5 +113,12 @@ in
|
|||
virtualHosts.":80".extraConfig = ''
|
||||
reverse_proxy :8082
|
||||
'';
|
||||
|
||||
virtualHosts.":3001".extraConfig = ''
|
||||
reverse_proxy :3000
|
||||
'';
|
||||
virtualHosts.":4001".extraConfig = ''
|
||||
reverse_proxy :4000
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue