Add neo4j database to nekomesh
This commit is contained in:
parent
984b5d848e
commit
669438f3d3
3 changed files with 11 additions and 1 deletions
|
|
@ -9,7 +9,7 @@
|
||||||
hostName = "metrics-nekomesh";
|
hostName = "metrics-nekomesh";
|
||||||
firewall = {
|
firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
allowedTCPPorts = [ 80 8443 9091 ];
|
allowedTCPPorts = [ 80 7474 7687 8443 9091 ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
|
./neo4j.nix
|
||||||
./prometheus.nix
|
./prometheus.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
];
|
];
|
||||||
|
|
|
||||||
9
config/hosts/metrics-nekomesh/neo4j.nix
Normal file
9
config/hosts/metrics-nekomesh/neo4j.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
services.neo4j = {
|
||||||
|
enable = true;
|
||||||
|
https.enable = false;
|
||||||
|
bolt.tlsLevel = "DISABLED";
|
||||||
|
defaultListenAddress = "0.0.0.0";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue