Neo4j: Difference between revisions

F (talk | contribs)
updated command to something that works
SZanko (talk | contribs)
m Add example config for local development
 
Line 4: Line 4:


== NixOS ==
== NixOS ==
=== Example configuration for local development with out SSL certs ===
<syntaxhighlight lang="nixos" line="1">services.neo4j= {
  enable = true;
  bolt = {
    tlsLevel = "DISABLED";
  };
  https = {
    enable = false;
  };
};</syntaxhighlight>


=== Setting the initial password ===
=== Setting the initial password ===