ruflo/src/ruvocal/docs/source/configuration/common-issues.md
This usually happens when running Chat UI over HTTP without proper cookie configuration.
Recommended: Set up a reverse proxy (NGINX, Caddy) to handle HTTPS.
Alternative: If you must run over HTTP, configure cookies:
COOKIE_SECURE=false
COOKIE_SAMESITE=lax
Also ensure PUBLIC_ORIGIN matches your actual URL:
PUBLIC_ORIGIN=http://localhost:5173
If models aren't appearing in the UI:
OPENAI_BASE_URL is correct and accessibleOPENAI_API_KEY is valid${OPENAI_BASE_URL}/modelsFor development, you can skip MongoDB entirely - Chat UI will use an embedded database.
For production, verify:
MONGODB_URL is a valid connection string