Dear Neo4j expert,
I configure local Neo4j Browser Guides server as of GitHub - neo4j-contrib/neo4j-guides: Tooling to create Neo4j Browser Guides from AsciiDoc Content
By following the configuration step of:
- Change neo4j.conf file. Add some more lines
browser.remote_content_hostname_whitelist=*
Bolt connector
dbms.connector.bolt.enabled=true
dbms.connector.bolt.tls_level=OPTIONAL
dbms.connector.bolt.listen_address=0.0.0.0:7687
-
Deploy local http server using python
python http-server.py & -
Then in found that the browser can open Neo4j Browser Guide using
:play http://localhost:8080/html/risk_intro.html
However, when I login to Browser using normal user (e.g. user with editor or architecture role), it return error of "Error: Hostname is not allowed according to server whitelist"
As of bellowing screen shoot, I can successfully play my content using neo4j user (admin role) but failed to run the same :play command using user with architecture role.
Please help to solve it.