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 131 must be set to true. 132 132 </para> 133 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> 134 140 </itemizedlist> 135 141 136 142 </section>
+1 -1
nixos/modules/services/logging/logstash.nix
··· 103 103 104 104 listenAddress = mkOption { 105 105 type = types.str; 106 - default = "0.0.0.0"; 106 + default = "127.0.0.1"; 107 107 description = "Address on which to start webserver."; 108 108 }; 109 109