Skip to content

Commit

Permalink
nixos/smokeping: Don't listen on all interfaces by default.
Browse files Browse the repository at this point in the history
In general, NixOS services are configured such that by default
they are not exposed to the Internet for security, see NixOS#100192.
  • Loading branch information
nh2 committed Nov 1, 2021
1 parent 992b9a0 commit 4eee911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/smokeping.nix
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ in
};
host = mkOption {
type = types.nullOr types.str;
default = null;
default = "localhost";
example = "192.0.2.1"; # rfc5737 example IP for documentation
description = ''
Host/IP to bind to for the web server.
Expand Down

0 comments on commit 4eee911

Please sign in to comment.