Build, host and run AI solutions.
Run open-source LLMs on your VPS — OpenAI-compatible API, zero per-token cost.
Ollama is an open-source LLM runtime that lets you pull and serve large language models (Llama 3, Mistral, Qwen, DeepSeek, Gemma) on your own infrastructure with a single command. It exposes an OpenAI-compatible REST API on port 11434, so any tool or library that works with OpenAI also works with your self-hosted instance — without changing a single line of code.
Deployed on a ServOrbit VPS, Ollama becomes your private AI inference backend: unlimited requests at a fixed monthly cost, with all prompts and responses staying on your server. It pairs directly with Open WebUI for a chat interface, Flowise or n8n for automation, or any custom application that calls `/v1/chat/completions`.
Replace OpenAI API calls with your own Ollama endpoint. Your prompts never leave your VPS — ideal for processing contracts, internal documents, or any sensitive data.
Run a 7B or 13B model on a dedicated VPS to prototype AI features before wiring up a production LLM. Fixed cost, no surprise bills, reset with `ollama rm`.
Pair Ollama with Open WebUI to give your whole team a shared ChatGPT-like interface powered by open-source models — on infrastructure you control.
Guide optimized for ServOrbit Cloud VPS.
Order a ServOrbit VPS with at least 8 GB RAM (for a 7B/8B Q4 model in CPU mode) or 16 GB for larger models. Ubuntu 22.04 is recommended. For production-grade latency, a VPS with a GPU changes the experience significantly.
Connect via SSH and run: docker run -d -v ollama:/root/.ollama -p 127.0.0.1:11434:11434 --name ollama --restart always ollama/ollama. Binding to 127.0.0.1 keeps the API off the public internet — it will sit behind your reverse proxy.
Download a model: docker exec -it ollama ollama pull llama3.1:8b. Check it's running: docker exec -it ollama ollama list. Test locally: curl http://127.0.0.1:11434/api/generate -d '{"model":"llama3.1:8b","prompt":"Hello"}'.
Ollama has no built-in authentication. Use Caddy or Nginx to terminate TLS and add a Bearer-token layer before exposing the API externally. Example Caddyfile: reverse_proxy localhost:11434 { header_up Authorization "Bearer {env.OLLAMA_TOKEN}" }.
In Open WebUI → Settings → Connections, set the Ollama URL to http://localhost:11434. In any OpenAI SDK, set base_url='http:// and api_key='ollama'. Your tools now use your models.
Web interface to interact with your local or remote LLMs. Your data stays on your infrastructure — no third party involved.
Automation & WorkflowsBuild LLM automation pipelines with drag-and-drop. Visual LangChain chains, connected to your existing tools.
Automation & WorkflowsAutomate your workflows across applications without code. Over 400 integrations, 100% self-hosted on your VPS.
Browse our help center and FAQ, or write to our team — support in French, English and Arabic.