lol

nixos/logstash: Listen on 127.0.0.1 instead of 0.0.0.0

+7 -1
+6
nixos/doc/manual/release-notes/rl-1803.xml
··· 131 must be set to true. 132 </para> 133 </listitem> 134 </itemizedlist> 135 136 </section>
··· 131 must be set to true. 132 </para> 133 </listitem> 134 + <listitem> 135 + <para> 136 + The option <option>services.logstash.listenAddress</option> is now <literal>127.0.0.1</literal> by default. 137 + Previously the default behaviour was to listen on all interfaces. 138 + </para> 139 + </listitem> 140 </itemizedlist> 141 142 </section>
+1 -1
nixos/modules/services/logging/logstash.nix
··· 103 104 listenAddress = mkOption { 105 type = types.str; 106 - default = "0.0.0.0"; 107 description = "Address on which to start webserver."; 108 }; 109
··· 103 104 listenAddress = mkOption { 105 type = types.str; 106 + default = "127.0.0.1"; 107 description = "Address on which to start webserver."; 108 }; 109