···131131 must be set to true.
132132 </para>
133133 </listitem>
134134+ <listitem>
135135+ <para>
136136+ The option <option>services.logstash.listenAddress</option> is now <literal>127.0.0.1</literal> by default.
137137+ Previously the default behaviour was to listen on all interfaces.
138138+ </para>
139139+ </listitem>
134140</itemizedlist>
135141136142</section>
+1-1
nixos/modules/services/logging/logstash.nix
···103103104104 listenAddress = mkOption {
105105 type = types.str;
106106- default = "0.0.0.0";
106106+ default = "127.0.0.1";
107107 description = "Address on which to start webserver.";
108108 };
109109