mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-03-07 22:33:11 +00:00
Update docker-compose.yml and final report script to improve Redis configuration and reporting
- Changed the default Redis authentication setting in docker-compose.yml to be empty for better flexibility. - Added a dashboard link to the final report script for easier access to Qdrant's dashboard.
This commit is contained in:
@@ -326,7 +326,7 @@ services:
|
||||
LANGFUSE_INGESTION_CLICKHOUSE_WRITE_INTERVAL_MS: ${LANGFUSE_INGESTION_CLICKHOUSE_WRITE_INTERVAL_MS:-}
|
||||
REDIS_HOST: ${REDIS_HOST:-redis}
|
||||
REDIS_PORT: ${REDIS_PORT:-6379}
|
||||
REDIS_AUTH: ${REDIS_AUTH:-LOCALONLYREDIS}
|
||||
REDIS_AUTH: ${REDIS_AUTH:-}
|
||||
REDIS_TLS_ENABLED: ${REDIS_TLS_ENABLED:-false}
|
||||
REDIS_TLS_CA: ${REDIS_TLS_CA:-/certs/ca.crt}
|
||||
REDIS_TLS_CERT: ${REDIS_TLS_CERT:-/certs/redis.crt}
|
||||
|
||||
@@ -197,6 +197,7 @@ if is_profile_active "qdrant"; then
|
||||
echo
|
||||
echo "================================= Qdrant =============================="
|
||||
echo
|
||||
echo "Dashboard: https://${QDRANT_HOSTNAME:-<hostname_not_set>}/dashboard"
|
||||
echo "Host: https://${QDRANT_HOSTNAME:-<hostname_not_set>}"
|
||||
echo "API Key: ${QDRANT_API_KEY:-<not_set_in_env>}"
|
||||
echo "Internal REST API Access (e.g., from backend): http://qdrant:6333"
|
||||
@@ -254,7 +255,7 @@ if is_profile_active "n8n" || is_profile_active "langfuse"; then
|
||||
echo
|
||||
echo "Internal Host: ${REDIS_HOST:-redis}"
|
||||
echo "Internal Port: ${REDIS_PORT:-6379}"
|
||||
echo "Password: ${REDIS_AUTH:-LOCALONLYREDIS} (Note: Default if not set in .env)"
|
||||
echo "Password: ${REDIS_AUTH:-}"
|
||||
echo "(Note: Primarily for internal service communication, not exposed externally by default)"
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user