nixos/logstash: Listen on 127.0.0.1 instead of 0.0.0.0

wip/yesman
Sarah Brofeldt 7 years ago
parent 4976020f3f
commit b694fa0054
  1. 6
      nixos/doc/manual/release-notes/rl-1803.xml
  2. 2
      nixos/modules/services/logging/logstash.nix

@ -131,6 +131,12 @@ following incompatible changes:</para>
must be set to true.
</para>
</listitem>
<listitem>
<para>
The option <option>services.logstash.listenAddress</option> is now <literal>127.0.0.1</literal> by default.
Previously the default behaviour was to listen on all interfaces.
</para>
</listitem>
</itemizedlist>
</section>

@ -103,7 +103,7 @@ in
listenAddress = mkOption {
type = types.str;
default = "0.0.0.0";
default = "127.0.0.1";
description = "Address on which to start webserver.";
};

Loading…
Cancel
Save