0

I have Neo4j running behind Nginx. Everything was fine until I altered the configuration of Nginx to use SSL. All my other services work (on their unsecured port 80s), but Neo4j now insists (on its login page) that I use 'bolt+s' or 'neo4j+s' secure connection schemes. I've tried adding proxy_ssl off to the block to force an unsecured connection for bolt, but it doesn't work.

How can I force Nginx (listening in ssl mode) to connect to Neo4j (or another network service) in http/unsecure mode?

1 Answers1

1

You could configure a reverse proxy with proxy_pass. Ensure it starts with the http protocol.