mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
nixos/smokeping: Don't listen on all interfaces by default.
In general, NixOS services are configured such that by default they are not exposed to the Internet for security, see #100192.
This commit is contained in:
parent
bb2a6ec751
commit
c7ed7466c3
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue