diff options
author | makefu <github@syntax-fehler.de> | 2017-05-25 23:19:36 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-05-25 23:19:36 +0200 |
commit | 0c92dd719a46139523f6e353c354871bd78024a4 (patch) | |
tree | b57b178de784847d9e0748a748412178762d621b /makefu/2configs/logging/central-logging-server.nix | |
parent | 243d33abe350a1a7b41a7f2c6106fd5b92bde4c8 (diff) |
m 2: rename stats and share
Diffstat (limited to 'makefu/2configs/logging/central-logging-server.nix')
-rw-r--r-- | makefu/2configs/logging/central-logging-server.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/makefu/2configs/logging/central-logging-server.nix b/makefu/2configs/logging/central-logging-server.nix deleted file mode 100644 index 90f8e6680..000000000 --- a/makefu/2configs/logging/central-logging-server.nix +++ /dev/null @@ -1,23 +0,0 @@ -{pkgs, config, ...}: - -with import <stockholm/lib>; -let - es-port = 9200; - kibana-port = 5601; -in { - services.elasticsearch = { - enable = true; - listenAddress = "0.0.0.0"; - port = es-port; - }; - services.kibana = { - enable = true; - listenAddress = "0.0.0.0"; - port = kibana-port; - }; - - 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 kibana-port} -j ACCEPT - ''; -} |