nixos-config/configs/workhorse/kibana.nix

26 lines
688 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ config, ... }: {
2019-10-24 02:20:38 +02:00
services.nginx = {
enable = true;
statusPage = true;
virtualHosts = {
"kibana.${config.networking.hostName}.private" = {
2019-12-20 05:54:26 +01:00
serverAliases = [ ];
2019-10-24 02:20:38 +02:00
locations."/" = {
2019-12-20 05:54:26 +01:00
proxyPass = "http://${config.networking.hostName}.private:${
toString config.services.kibana.port
}";
2019-10-24 02:20:38 +02:00
};
};
};
};
services.elasticsearch.enable = true;
services.elasticsearch.listenAddress = "workhorse.private";
services.kibana.enable = true;
services.kibana.elasticsearch.hosts = [ "http://workhorse.private:9200" ];
services.kibana.listenAddress = "workhorse.private";
services.kibana.port = 5601;
}