summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2017-12-09 10:46:13 +0100
committerSarah Brofeldt <sbrofeldt@gmail.com>2017-12-09 11:32:14 +0100
commitb694fa0054a21427d2e9c5cfcb945671d764bd0c (patch)
treef729f76a7fb1e2d07ca89ced519f74e3c915d418 /nixos/modules
parent4976020f3f3c778e6724108a080125bd0878bf3c (diff)
downloadnixlib-b694fa0054a21427d2e9c5cfcb945671d764bd0c.tar
nixlib-b694fa0054a21427d2e9c5cfcb945671d764bd0c.tar.gz
nixlib-b694fa0054a21427d2e9c5cfcb945671d764bd0c.tar.bz2
nixlib-b694fa0054a21427d2e9c5cfcb945671d764bd0c.tar.lz
nixlib-b694fa0054a21427d2e9c5cfcb945671d764bd0c.tar.xz
nixlib-b694fa0054a21427d2e9c5cfcb945671d764bd0c.tar.zst
nixlib-b694fa0054a21427d2e9c5cfcb945671d764bd0c.zip
nixos/logstash: Listen on 127.0.0.1 instead of 0.0.0.0
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/logging/logstash.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/logging/logstash.nix b/nixos/modules/services/logging/logstash.nix
index b4abd2cd7e5e..28d89a7463ab 100644
--- a/nixos/modules/services/logging/logstash.nix
+++ b/nixos/modules/services/logging/logstash.nix
@@ -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.";
       };