openspeedtest: Remove firewall bypass

This commit is contained in:
SebastianStork 2025-08-27 20:35:13 +02:00
parent 0cc7c80407
commit d4f66865eb

View file

@ -11,7 +11,7 @@ in
};
port = lib.mkOption {
type = lib.types.port;
default = 3001;
default = 4479;
};
};
@ -23,7 +23,7 @@ in
virtualisation.oci-containers.containers.openspeedtest = {
image = "openspeedtest/latest";
ports = [ "${builtins.toString cfg.port}:3000" ];
ports = [ "127.0.0.1:${builtins.toString cfg.port}:3000" ];
pull = "newer";
};
};