Skip to content

Commit

Permalink
Update the neo4j.conf for allowing all connections
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincoakley committed Apr 21, 2017
1 parent 54cf2a4 commit c6dc7ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
- name: Allow any connection to Neo4J
lineinfile:
dest: /etc/neo4j/neo4j.conf
regexp: '^(# )?dbms.connector.http.address=0.0.0.0:7474'
line: "dbms.connector.http.address=0.0.0.0:7474"
regexp: '^(# )?dbms.connectors.default_listen_address=0.0.0.0'
line: "dbms.connectors.default_listen_address=0.0.0.0"
state: present
when: neo4j_allow_any_connection | bool
notify: Restart Neo4j
Expand Down

0 comments on commit c6dc7ed

Please sign in to comment.