nixos/logstash: Listen on 127.0.0.1 instead of 0.0.0.0

This commit is contained in:
Sarah Brofeldt
2017-12-09 11:32:14 +01:00
parent 4976020f3f
commit b694fa0054
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -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.";
};