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);
102102
103103const additionalConfig = {
104104 // 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'
106109} ;
107110
108111const neoCtrlVersionParam = '-e' ;
109- const defaultNeo4jVersion = '3.2.5 ' ;
112+ const defaultNeo4jVersion = '3.2.9 ' ;
110113const defaultNeoCtrlArgs = `${ neoCtrlVersionParam } ${ defaultNeo4jVersion } ` ;
111114
112115function neo4jCertPath ( dir ) {
You can’t perform that action at this time.
0 commit comments