Update Caddyfile and Docker Compose for Neo4j integration

- Modified Caddyfile to configure reverse proxy for Neo4j HTTP and Bolt protocols.
- Updated Docker Compose to expose port 7687 for Neo4j Bolt protocol access.
This commit is contained in:
Yury Kossakovsky
2025-05-28 18:40:45 -06:00
parent d6a00ff889
commit 06a1b9fb86
2 changed files with 7 additions and 1 deletions

View File

@@ -58,7 +58,12 @@
# Neo4j
{$NEO4J_HOSTNAME} {
reverse_proxy neo4j:7474
reverse_proxy / neo4j:7474
}
# Neo4j Bolt Protocol (wss)
https://{$NEO4J_HOSTNAME}:7687 {
reverse_proxy neo4j:7687
}
# SearXNG

View File

@@ -179,6 +179,7 @@ services:
ports:
- "80:80"
- "443:443"
- "7687:7687"
restart: unless-stopped
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro