26 lines
755 B
Nix
26 lines
755 B
Nix
{ config, ... }: {
|
|
services.nginx = {
|
|
enable = true;
|
|
statusPage = true;
|
|
virtualHosts = {
|
|
"kibana.${config.networking.hostName}.private" = {
|
|
serverAliases = [ ];
|
|
locations."/" = {
|
|
proxyPass = "http://${config.networking.hostName}.private:${
|
|
toString config.services.kibana.port
|
|
}";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
services.elasticsearch.enable = true;
|
|
services.elasticsearch.listenAddress =
|
|
"${config.networking.hostName}.private";
|
|
|
|
services.kibana.enable = true;
|
|
services.kibana.elasticsearch.hosts =
|
|
[ "http://${config.networking.hostName}.private:9200" ];
|
|
services.kibana.listenAddress = "${config.networking.hostName}.private";
|
|
services.kibana.port = 5601;
|
|
|
|
}
|