Commit c7ed7466 authored by Niklas Hambüchen's avatar Niklas Hambüchen Committed by Kerstin
Browse files

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.
parent bb2a6ec7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.