remove hardcoded ip address in monitoring server

IP address is now assigned via DHCP so we don't need it anymore
This commit is contained in:
lilly 2025-04-18 15:00:41 +02:00
parent 09617881f8
commit cd19fd4547
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g

View file

@ -41,17 +41,6 @@
networking.firewall.allowedTCPPorts = [ 80 ];
networking.usePredictableInterfaceNames = false;
networking = {
interfaces.ens18 = {
ipv4.addresses = [
{
address = "94.45.254.4";
prefixLength = 25;
}
];
};
defaultGateway = "94.45.254.1";
};
services.nginx = {
enable = true;
recommendedProxySettings = true;