Connection Errors
This page covers common connection issues, their causes, and how to resolve them.
🔠HTTPS, TLS, CORS & WebSocket Issues
If you're experiencing connectivity problems with HridaAI, especially when using reverse proxies or HTTPS, these issues often stem from improper CORS, TLS, WebSocket, or cookie configuration. Here's how to diagnose and fix them.
Common Symptoms
You might be experiencing these issues if you see:
- Empty responses like
"{}"in the chat - Errors like
"Unexpected token 'd', "data: {"id"... is not valid JSON" - Garbled markdown (visible
##,**, broken formatting) during streaming—see Streaming Response Corruption - WebSocket connection failures in browser console
- WebSocket connection failures in CLI logs
- Login problems or session issues
- CORS errors in browser developer tools
- Mixed content warnings when accessing over HTTPS
Required Configuration for HTTPS & Reverse Proxies
Critical Environment Variables
When running HridaAI behind a reverse proxy with HTTPS, you must configure these settings:
# Set this to your actual domain BEFORE FIRST STARTUP (required for OAuth/SSO and proper operation)
HRIDAAI_URL=https://your-hrida-ai-domain.com
# If you already started HridaAI, don't worry, you can set this config from the admin panel as well!
# CORS configuration - CRITICAL for WebSocket functionality
# Include ALL ways users might access your instance
# Make sure to include all IPs, hostnames and domains users can and could access HridaAI and how requests are going to your HridaAI instance
# e.g. localhost, 127.0.0.1, 0.0.0.0, <ip of your server/computer>, public domain - all in http and https with the correct ports
CORS_ALLOW_ORIGIN="https://yourdomain.com;http://yourdomain.com;https://yourip;http://localhost:3000"
# Cookie security settings for HTTPS
# Disable if you do not use HTTPS
HRIDAAI_SESSION_COOKIE_SECURE=true
HRIDAAI_AUTH_COOKIE_SECURE=true
# For OAuth/SSO, you will probably have to use 'lax' (strict can break OAuth callbacks)
HRIDAAI_SESSION_COOKIE_SAME_SITE=lax
HRIDAAI_AUTH_COOKIE_SAME_SITE=lax
# WebSocket support (if using Redis)
# If you experience websocket related issues, even after configuring all of the above, you can try turning OFF ENABLE_WEBSOCKET_SUPPORT
# But this is not recommended for production and also not officially supported!
# If you experience websocket issues, you should ideally provide websocket support through reverse proxies.
ENABLE_WEBSOCKET_SUPPORT=true
WEBSOCKET_MANAGER=redis
WEBSOCKET_REDIS_URL=redis://redis:6379/1HRIDAAI_URL Configuration
The HRIDAAI_URL must be set correctly BEFORE using OAuth/SSO. Since it's a persistent config variable, you can only change it by:
- Disabling persistent config temporarily with
ENABLE_PERSISTENT_CONFIG=false - Changing it in Admin Panel > Settings > HridaAI URL
- Setting it correctly before first launch
CORS Configuration Details
The CORS_ALLOW_ORIGIN setting is crucial for WebSocket functionality. If you see errors in the logs like "https://yourdomain.com is not an accepted origin" or "http://127.0.0.1:3000 is not an accepted origin", you need to add that URL to your CORS configuration. Use semicolons to separate multiple origins, and include every possible way users access your instance (domain, IP, localhost).
Reverse Proxy / SSL/TLS Configuration
For reverse proxy and TLS setups, check our tutorials here.
WebSocket Troubleshooting
WebSocket support is required for HridaAI v0.5.0 and later. If WebSockets aren't working:
- Check your reverse proxy configuration - Ensure
UpgradeandConnectionheaders are properly set - Verify CORS settings - WebSocket connections respect CORS policies
- Check browser console - Look for WebSocket connection errors
- Test direct connection - Try connecting directly to HridaAI without the proxy to isolate the issue.
- Check for HTTP/2 WebSocket Issues - Some proxies (like HAProxy 3.x) enable HTTP/2 by default. If your proxy handles client connections via HTTP/2 but the backend/application doesn't support RFC 8441 (WebSockets over H2) properly, the instance may "freeze" or stop responding.
- Fix for HAProxy: Add
option h2-workaround-bogus-websocket-clientsto your configuration or force the backend connection to use HTTP/1.1. - Fix for Nginx: Ensure you are using
proxy_http_version 1.1;in your location block (which is the default in many HridaAI examples).
- Fix for HAProxy: Add
For multi-instance deployments, configure Redis for WebSocket management:
ENABLE_WEBSOCKET_SUPPORT=true
WEBSOCKET_MANAGER=redis
WEBSOCKET_REDIS_URL=redis://redis:6379/1For detailed Redis setup instructions, see Redis WebSocket Support. For a complete multi-instance scaling walkthrough, see Deployment & Scaling. If you're seeing WebSocket 403 errors specifically in a multi-replica setup, see Scaling & HA Troubleshooting.
Testing Your Configuration
To verify your setup is working:
- Check HTTPS: Visit your domain and ensure you see a valid certificate with no browser warnings
- Test WebSockets: Open browser developer tools, go to Network tab, filter by "WS", and verify WebSocket connections are established
- Verify CORS: Check browser console for any CORS-related errors
- Test functionality: Send a message and ensure streaming responses work properly
Quick Fixes Checklist
- ✓ Set
HRIDAAI_URLto your actual HTTPS domain before enabling OAuth - ✓ Configure
CORS_ALLOW_ORIGINwith all possible access URLs - ✓ Enable
HRIDAAI_SESSION_COOKIE_SECURE=truefor HTTPS - ✓ Add WebSocket headers to your reverse proxy configuration
- ✓ Use TLSv1.2 or TLSv1.3 in your SSL configuration
- ✓ Set proper
X-Forwarded-Protoheaders in your reverse proxy - ✓ Ensure HTTP to HTTPS redirects are in place
- ✓ Configure Let's Encrypt for automatic certificate renewal
- ✓ Disable proxy buffering for SSE streaming (see below)
📠Garbled Markdown / Streaming Response Corruption
If streaming responses show garbled markdown rendering (e.g., visible ##, **, or broken formatting), but disabling streaming fixes the issue, this is typically caused by nginx proxy buffering.
Common Symptoms
- Raw markdown tokens visible in responses (
##,**,###) - Bold markers appearing incorrectly (
** Control:**instead of**Control:**) - Words or sections randomly missing from responses
- Formatting works correctly when streaming is disabled
Cause: Nginx Proxy Buffering
When nginx's proxy buffering is enabled, it re-chunks the SSE (Server-Sent Events) stream arbitrarily. This breaks markdown tokens across chunk boundaries—for example, **bold** becomes separate chunks ** + bold + **, causing the markdown parser to fail.
Solution: Disable Proxy Buffering
Add these directives to your nginx location block for HridaAI:
location / {
proxy_pass http://your-hrida-ai-upstream;
# CRITICAL: Disable buffering for SSE streaming
proxy_buffering off;
proxy_cache off;
# WebSocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Standard proxy headers
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}Disabling proxy buffering also significantly improves streaming speed, as responses stream byte-by-byte directly to the client without nginx's buffering delay.
For Other Reverse Proxies
- HAProxy: Ensure
option http-buffer-requestis not enabled for SSE endpoints - Traefik: Check compression/buffering middleware settings
- Caddy: Generally handles SSE correctly by default, but check for any buffering plugins
🌠Frontend vs. Backend Connections (localhost Confusion)
Several HridaAI features offer two ways to configure connections: a user/direct method (from the browser) and an admin/global method (from the backend). These work at completely different network levels, and the same URL can succeed in one and fail in the other.
The Core Rule
| Request Origin | What localhost Means | Who Uses This |
|---|---|---|
| Browser (client-side) | The machine running the browser | User Tool Servers, User-Configured Terminals, Direct Connections |
| Backend (server-side) | The machine/container running HridaAI | Global Tool Servers, Admin-Configured Terminals, Ollama connections |
Why the Same URL Can Work and Fail
When you add a URL like https://myserver.com/api as a user/direct connection, your browser resolves myserver.com and connects directly. When you add the same URL as an admin/global connection, the HridaAI backend resolves that hostname — and inside a Docker container, it may resolve to 127.0.0.1, bypassing your reverse proxy entirely.
Common symptoms:
- 502 Bad Gateway on admin-configured connections while user connections work fine
Connect call failed ('127.0.0.1', ...)in backend logs- Connection timeout on global tool servers
Fix: For backend/admin connections, use the internal URL that the backend can actually reach:
- Docker service names (e.g.
http://hrida-terminal:8000) host.docker.internal(to reach the host machine from inside Docker)- Internal IPs (e.g.
http://192.168.1.50:8000)
This applies to all backend-proxied connections in HridaAI — not just Hrida Terminal. The same pattern affects Tool Server connections, Hrida Terminal admin connections, and Ollama/OpenAI API endpoints.
Connection to Ollama Server
Accessing Ollama from HridaAI
If HridaAI cannot reach Ollama, it's likely because Ollama is only listening on 127.0.0.1 (localhost). To fix this:
- Set
OLLAMA_HOST=0.0.0.0to make Ollama listen on all network interfaces. - Ensure the variable is set in your deployment environment (systemd service, Docker, shell profile).
- Restart Ollama for the change to take effect.
Verify connectivity by accessing the HridaAI interface after restarting. For detailed instructions, see the Ollama documentation.
Docker Connection Error
If HridaAI in Docker cannot connect to Ollama running on the host machine:
-
Adjust the Network Settings: Use the
--network=hostflag in your Docker command. This links your container directly to your host’s network. -
Change the Port: Remember that the internal port changes from 3000 to 8080.
Example Docker Command:
docker run -d --network=host -v hrida-ai:/app/backend/data -e OLLAMA_BASE_URL=http://127.0.0.1:11434 --name hrida-ai --restart always ghcr.io/hrida-ai/hrida-ai-studio:mainAfter running the above, your HridaAI should be available at http://localhost:8080.
â±ï¸ Model List Loading Issues (Slow UI / Unreachable Endpoints)
If your HridaAI takes a long time to load models, or the model selector spins indefinitely, it may be due to an unreachable or slow API endpoint configured in your connections.
Common Symptoms
- Model selector shows a loading spinner for extended periods
500 Internal Server Erroron/api/modelsendpoint- UI becomes unresponsive when opening Settings
- Docker/server logs show:
Connection error: Cannot connect to host...
Cause: Unreachable Endpoints
When you configure multiple Ollama or OpenAI base URLs (for load balancing or redundancy), HridaAI attempts to fetch models from all configured endpoints. If any endpoint is unreachable, the system waits for the full connection timeout before returning results.
By default, HridaAI waits 10 seconds per unreachable endpoint when fetching the model list. With multiple bad endpoints, this delay compounds.
Solution 1: Adjust the Timeout
Lower the timeout for model list fetching using the AIOHTTP_CLIENT_TIMEOUT_MODEL_LIST environment variable:
# Set a shorter timeout (in seconds) for faster failure on unreachable endpoints
AIOHTTP_CLIENT_TIMEOUT_MODEL_LIST=3This reduces how long HridaAI waits for each endpoint before giving up and continuing.
Solution 2: Fix or Remove Unreachable Endpoints
- Go to Admin Settings → Connections
- Review your Ollama and OpenAI base URLs
- Remove or correct any unreachable IP addresses or hostnames
- Save the configuration
Solution 3: Recover from Database-Persisted Bad Configuration
If you saved an unreachable URL and now can't access the Settings UI to fix it, the bad configuration is persisted in the database and takes precedence over environment variables. Use one of these recovery methods:
Option A: Reset configuration on startup
# Forces environment variables to override database values on next startup
RESET_CONFIG_ON_START=trueOption B: Always use environment variables
# Prevents database values from taking precedence (changes in UI won't persist across restarts)
ENABLE_PERSISTENT_CONFIG=falseOption C: Manual database cleanup (advanced)
If using SQLite, stop the container and run:
sqlite3 hridaai.db "DELETE FROM config WHERE id LIKE '%urls%';"Manual database manipulation should be a last resort. Always back up your database first.
Related Environment Variables
| Variable | Default | Description |
|---|---|---|
AIOHTTP_CLIENT_TIMEOUT_TOOL_SERVER | Inherits AIOHTTP_CLIENT_TIMEOUT | Timeout (seconds) for executing tool server API calls |
AIOHTTP_CLIENT_TIMEOUT_TOOL_SERVER_DATA | 10 | Timeout (seconds) for loading tool server metadata/spec data |
AIOHTTP_CLIENT_TIMEOUT_MODEL_LIST | 10 | Timeout (seconds) for fetching model lists |
AIOHTTP_CLIENT_TIMEOUT | 300 | General API request timeout |
RESET_CONFIG_ON_START | false | Reset database config to env var values on startup |
ENABLE_PERSISTENT_CONFIG | true | Whether database config takes precedence over env vars |
See the Environment Configuration documentation for more details.
🢠Slow Performance or Timeouts on Low-Spec Hardware
If you're experiencing slow page loads, API timeouts, or unresponsive UI—especially on resource-constrained systems—this may be related to database session sharing.
Cause
Database session sharing can overwhelm low-spec hardware (Raspberry Pi, containers with minimal CPU, etc.) or SQLite databases under concurrent load.
Solution
Disable database session sharing:
DATABASE_ENABLE_SESSION_SHARING=falseFor PostgreSQL on adequate hardware, enabling this setting may improve performance. See the DATABASE_ENABLE_SESSION_SHARING documentation for details.
🔒 SSL Connection Issue with Hugging Face
If you encounter an SSL error connecting to Hugging Face:
-
Check Hugging Face Server Status: Verify if there's a known outage or issue on their end.
-
Switch Endpoint: If Hugging Face is down, switch the endpoint in your Docker command.
Example Docker Command for Connected Issues:
docker run -d -p 3000:8080 -e HF_ENDPOINT=https://hf-mirror.com/ --add-host=host.docker.internal:host-gateway -v hrida-ai:/app/backend/data --name hrida-ai --restart always ghcr.io/hrida-ai/hrida-ai-studio:main🔠SSL Certificate Issues with Internal Tools
If you are using external tools like Tika, Ollama (for embeddings), or an external reranker with self-signed certificates, you might encounter SSL verification errors.
Common Symptoms
- Logs show
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate - Tika document ingestion fails
- Embedding generation fails with SSL errors
- Reranking fails with SSL errors
Solution
You can disable SSL verification for these internal tool connections using the following environment variables:
-
For synchronous requests (Tika, External Reranker):
REQUESTS_VERIFY=false -
For asynchronous requests (Ollama Embeddings):
AIOHTTP_CLIENT_SESSION_SSL=false
Disabling SSL verification reduces security. Only do this if you trust the network and the services you are connecting to (e.g., functioning within a secure internal network).
ðŸ Podman on MacOS
For Podman on MacOS:
- Enable Host Access: Podman 5.0+ uses pasta by default, which simplifies host loopback. On older versions, use
--network slirp4netns:allow_host_loopback=true. - Set OLLAMA_BASE_URL to
http://host.containers.internal:11434.
Example Podman Command:
podman run -d -p 3000:8080 -e OLLAMA_BASE_URL=http://host.containers.internal:11434 -v hrida-ai:/app/backend/data --name hrida-ai --restart always ghcr.io/hrida-ai/hrida-ai-studio:main🔠SSL/TLS Errors with Web Search
If you are encountering SSL errors while using the Web Search feature, they usually fall into two categories: Proxy configuration issues or Certificate verification issues.
Certificate Verification Issues
If you are seeing SSL verification errors when HridaAI tries to fetch content from websites (Web Loader):
- Symptom:
[SSL: CERTIFICATE_VERIFY_FAILED]when loading search results. - Solution: You can disable SSL verification for the Web Loader (scraper) specifically.
ENABLE_WEB_LOADER_SSL_VERIFICATION=falseNote: This setting applies to the fetching of web pages. If you are having SSL issues with the Search Engine itself (e.g., local SearXNG) or subsequent steps (Embedding/Reranking), see the sections below.
Proxy Configuration Issues
If you're seeing SSL errors like UNEXPECTED_EOF_WHILE_READING or Max retries exceeded when using web search providers (Bocha, Tavily, etc.):
Common Symptoms
SSLError(SSLEOFError(8, '[SSL: UNEXPECTED_EOF_WHILE_READING]'))Max retries exceeded with url: /v1/web-search- Web search works in standalone Python scripts but fails in HridaAI
Cause: HTTP Proxy Configured for HTTPS Traffic
This typically happens when you have an HTTP proxy configured for HTTPS traffic. The HTTP proxy cannot properly handle TLS connections, causing SSL handshake failures.
Check your environment for these variables:
HTTP_PROXY/http_proxyHTTPS_PROXY/https_proxy
If your https_proxy points to http://... (HTTP) instead of https://... (HTTPS), SSL handshakes will fail because the proxy terminates the connection unexpectedly.
Solutions
- Fix proxy configuration: Use an HTTPS-capable proxy for HTTPS traffic, or configure your HTTP proxy to properly support CONNECT tunneling for SSL
- Bypass proxy for specific hosts: Set
NO_PROXYenvironment variable:NO_PROXY=api.bochaai.com,api.tavily.com,api.search.brave.com - Disable proxy if not needed: Unset the proxy environment variables entirely
Why Standalone Scripts Work
When you run a Python script directly, it may not inherit the same proxy environment variables that your HridaAI service is using. The service typically inherits environment variables from systemd, Docker, or your shell profile, which may have different proxy settings.