I have one problem about install n8n in server no internet connection and this my env:
environment:
- DB_TYPE=postgresdb
- DB_POSTGRESDB_HOST=postgres
- DB_POSTGRESDB_PORT=5432
- DB_POSTGRESDB_USER=${POSTGRES_USER}
- DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD}
# Security & Encryption
- N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY}
- N8N_USER_MANAGEMENT_JWT_SECRET=${N8N_USER_MANAGEMENT_JWT_SECRET}
# External Services (Optional AI connection)
- OLLAMA_HOST=ollama:11434 # Remove if not used
# Disable Telemetry & Tracking
- N8N_DIAGNOSTICS_ENABLED=false
- N8N_TELEMETRY_ENABLED=false
- N8N_PERSONALIZATION_ENABLED=false
- N8N_VERSION_NOTIFICATIONS_ENABLED=false
- N8N_TEMPLATES_ENABLED=false
# Disable Public API Exposure
- N8N_PUBLIC_API_DISABLED=true
- N8N_PUBLIC_API_SWAGGERUI_DISABLED=true
# Disable External Tracking Hooks
- EXTERNAL_FRONTEND_HOOKS_URLS=
- N8N_DIAGNOSTICS_CONFIG_FRONTEND=
- N8N_DIAGNOSTICS_CONFIG_BACKEND=
# HTTP Config (No HTTPS Enforcement)
- N8N_PROTOCOL=http
- N8N_SECURE_COOKIE=false
- N8N_DISABLE_HTTPS_WARNING=true
# Optional Permissions Enforcement
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
And you can see the ollama model not response,I think it try to access to internet

