diff options
author | makefu <github@syntax-fehler.de> | 2017-02-07 13:57:03 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-02-07 13:57:03 +0100 |
commit | ea8b17f40b8f9e4532102c5e8183c8c2a38dda08 (patch) | |
tree | 2bd4c0d858dddc205080d831bc394b67a0f51431 | |
parent | d8ab184c3336ae9874f266bd77cf305f10d4bdd4 (diff) |
m 2 logging: whitelist kibana port
-rw-r--r-- | makefu/2configs/logging/central-logging-server.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefu/2configs/logging/central-logging-server.nix b/makefu/2configs/logging/central-logging-server.nix index e2cfe6948..90f8e6680 100644 --- a/makefu/2configs/logging/central-logging-server.nix +++ b/makefu/2configs/logging/central-logging-server.nix @@ -18,6 +18,6 @@ in { networking.firewall.extraCommands = '' iptables -A INPUT -i retiolum -p tcp --dport ${toString es-port} -j ACCEPT - iptables -A INPUT -i retiolum -p tcp --dport ${toString es-port} -j ACCEPT + iptables -A INPUT -i retiolum -p tcp --dport ${toString kibana-port} -j ACCEPT ''; } |