mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
nixos/neo4j: fix typo
This commit is contained in:
parent
051a99ccd9
commit
8d6f4552cd
@ -372,6 +372,13 @@
|
||||
instead of using the Redis default.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Neo4j was updated from version 3 to version 4. See this
|
||||
<link xlink:href="https://neo4j.com/docs/upgrade-migration-guide/current/">migration
|
||||
guide</link> on how to migrate your Neo4j instance.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Matrix Synapse now requires entries in the
|
||||
|
@ -57,7 +57,7 @@ let
|
||||
|
||||
# HTTP Connector
|
||||
${optionalString (cfg.http.enable) ''
|
||||
dbms.connector.http.enabled=${boolToString cfg.https.enable}
|
||||
dbms.connector.http.enabled=${boolToString cfg.http.enable}
|
||||
dbms.connector.http.listen_address=${cfg.http.listenAddress}
|
||||
dbms.connector.http.advertised_address=${cfg.http.listenAddress}
|
||||
''}
|
||||
|
@ -6,8 +6,8 @@ import ./make-test-python.nix {
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
virtualisation.memorySize = 4096;
|
||||
virtualisation.diskSize = 1024;
|
||||
virtualisation.memorySize = 4096;
|
||||
virtualisation.diskSize = 1024;
|
||||
|
||||
services.neo4j.enable = true;
|
||||
# require tls certs to be available
|
||||
|
Loading…
Reference in New Issue
Block a user