File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -102,11 +102,14 @@ const authToken = neo4j.auth.basic(username, password);
102
102
103
103
const additionalConfig = {
104
104
// tell neo4j to listen for IPv6 connections, only supported by 3.1+
105
- 'dbms.connectors.default_listen_address' : '::'
105
+ 'dbms.connectors.default_listen_address' : '::' ,
106
+
107
+ // HTTP server should keep listening on default address and create a self-signed certificate with host 'localhost'
108
+ 'dbms.connector.http.listen_address' : 'localhost:7474'
106
109
} ;
107
110
108
111
const neoCtrlVersionParam = '-e' ;
109
- const defaultNeo4jVersion = '3.2.5 ' ;
112
+ const defaultNeo4jVersion = '3.2.9 ' ;
110
113
const defaultNeoCtrlArgs = `${ neoCtrlVersionParam } ${ defaultNeo4jVersion } ` ;
111
114
112
115
function neo4jCertPath ( dir ) {
You can’t perform that action at this time.
0 commit comments