Neo4j: Difference between revisions
updated command to something that works |
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 === | ||