[{"data":1,"prerenderedAt":117},["ShallowReactive",2],{"seo-verification":3,"blog-heberger-outline-en":6},{"google":4,"bing":5},"EycwPY2XMyTkVzas3n1ygeNJFGAH513qrMjfDljzsMQ","",{"id":7,"slug":8,"title":9,"excerpt":10,"readTime":11,"views":12,"isPinned":13,"publishedAt":14,"category":15,"categories":21,"featuredImage":23,"bgImage":24,"posterImage":25,"relatedSolution":26,"intro":28,"sections":29,"ctaTitle":72,"ctaBody":73,"ctaButton":74,"ctaUrl":75,"relatedPosts":76},80,"heberger-outline","Host Outline on your own VPS","Deploy Outline on your Cloud VPS: a self-hosted collaborative knowledge base with Docker, PostgreSQL, Redis and SSL. Complete guide.",8,760,false,"2026-04-01T00:00:00+00:00",{"id":16,"name":17,"slug":18,"color":19,"icon":20},7,"Self-hosting","self-hosting","bg-indigo-500\u002F10 text-indigo-400","cloud",[22],{"id":16,"name":17,"slug":18,"color":19,"icon":20},null,"\u002Fblog\u002Fcovers\u002Fbg.svg","\u002Fblog\u002Fcovers\u002Fheberger-outline-poster.svg",{"categorySlug":18,"appSlug":27},"outline","Outline is a polished collaborative knowledge base, a credible alternative to Notion or Confluence. Hosting it yourself on a VPS means keeping full control of your team's internal documentation, with no per-seat subscription and no data stored outside your perimeter.",[30,34,44,47,69],{"type":31,"title":32,"body":33},"h2","Why self-host Outline on a VPS","Outline often stores what a company holds most strategic: internal procedures, runbooks, architecture decisions, onboarding. On the SaaS version, you pay per seat and your content lives on third-party infrastructure. By installing it on your own VPS, you set the rules yourself: SSO authentication via your provider, PostgreSQL database backups according to your policy, unlimited retention and an unbilled number of users. Outline stays lightweight for reading but relies on a precise stack (PostgreSQL for documents, Redis for sessions and real-time websockets, S3-compatible storage for attachments). A dedicated VPS lets you size each of these components and deploy the whole stack with a single `docker-compose.yml` file.",{"type":35,"title":36,"items":37},"ul","What you gain concretely",[38,39,40,41,42,43],"Unlimited users with no per-seat billing, unlike SaaS offerings.","SSO integrated with your enterprise identity (Google Workspace, OIDC, Azure AD) under your control.","High-performance full-text search served directly by your PostgreSQL, with no external dependency.","Attachments and exports stored on your own S3 bucket or self-hosted MinIO.","Real-time collaborative editing thanks to Redis, with no data passing through a third party.","Controlled backups and restoration: a single `pg_dump` is enough to archive the entire documentation database.",{"type":31,"title":45,"body":46},"Hardware and software prerequisites","Outline is comfortable with 2 vCPU and 4 GB of RAM for a team of 20 to 50 people: PostgreSQL and Redis consume little at idle, but real-time editing and search scale up occasionally. Count on 20 GB of disk for the database and logs, more if you store attachments locally rather than on S3. On the software side: Docker Engine and the `docker compose` v2 plugin, a domain name pointed to the VPS IP (for example `wiki.yourcompany.com`), and an SMTP account for invitation emails. Outline mandatorily requires an authentication provider: prepare the OAuth credentials (Google, Slack or an OIDC server) before starting, because there is no login with a simple password.",{"type":48,"title":49,"steps":50},"steps","Deploy Outline step by step",[51,54,57,60,63,66],{"title":52,"body":53},"Prepare the VPS and Docker","Update the system with `apt update && apt upgrade -y`, install Docker via the official script, then verify with `docker compose version`. Create an `\u002Fopt\u002Foutline` folder that will host your configuration.",{"title":55,"body":56},"Generate the secrets and the environment file","Outline requires two keys: generate them with `openssl rand -hex 32` for `SECRET_KEY` and `UTILS_SECRET`. In the `.env`, fill in the `DATABASE_URL`, `REDIS_URL`, `URL=https:\u002F\u002Fwiki.yourcompany.com` variables and the OAuth credentials of your provider.",{"title":58,"body":59},"Define the PostgreSQL, Redis and Outline stack","In `docker-compose.yml`, declare three services: `postgres` (image `postgres:15` with a persistent volume), `redis` (image `redis:7`) and `outline` (image `outlinewiki\u002Foutline:latest`). Link Outline to both backends via the environment variables and expose port `3000` internally only.",{"title":61,"body":62},"Initialize the database","Run the migrations before the first startup with `docker compose run --rm outline yarn db:migrate --env=production-ssl-disabled`. This command creates the documentation schema in PostgreSQL; without it, Outline will refuse to start.",{"title":64,"body":65},"Place a reverse proxy with SSL","Put Caddy or Traefik in front of the `outline` service. With Caddy, a line `wiki.yourcompany.com { reverse_proxy outline:3000 }` automatically generates and renews the Let's Encrypt certificate. Be sure to forward the WebSocket headers for real-time editing.",{"title":67,"body":68},"Start and create the first workspace","Launch the stack with `docker compose up -d`, then open `https:\u002F\u002Fwiki.yourcompany.com`. Log in via your OAuth provider: the first authenticated account becomes administrator of the workspace.",{"type":70,"body":71},"tip","Enable S3 storage rather than local for attachments: point `AWS_S3_UPLOAD_BUCKET_URL` to a self-hosted MinIO on the same VPS. You thus decouple the file volume from the PostgreSQL database, which makes `pg_dump` fast and lightweight, and lets you scale without bloating the application container.","Launch your knowledge base in minutes","The ServOrbit Cloud VPS gives you the power, Docker preinstalled and a dedicated IP to deploy Outline and its PostgreSQL\u002FRedis stack without friction. You keep control of your data, your SSO and your backups.","Deploy Outline on a Cloud VPS","\u002Fvps-cloud",[77,90,104],{"id":78,"slug":79,"title":80,"excerpt":81,"readTime":16,"views":82,"isPinned":13,"publishedAt":83,"category":84,"categories":85,"featuredImage":23,"bgImage":24,"posterImage":87,"relatedSolution":88},71,"heberger-nextcloud","Hosting Nextcloud on your own VPS","Take back control of your files: deploy Nextcloud on your VPS with Docker, database, reverse proxy and SSL.",2720,"2026-04-10T00:00:00+00:00",{"id":16,"name":17,"slug":18,"color":19,"icon":20},[86],{"id":16,"name":17,"slug":18,"color":19,"icon":20},"\u002Fblog\u002Fcovers\u002Fheberger-nextcloud-poster.svg",{"categorySlug":18,"appSlug":89},"nextcloud",{"id":91,"slug":92,"title":93,"excerpt":94,"readTime":95,"views":96,"isPinned":13,"publishedAt":97,"category":98,"categories":99,"featuredImage":23,"bgImage":24,"posterImage":101,"relatedSolution":102},72,"heberger-ghost","Hosting Ghost on your own VPS","Launch a professional blog or newsletter with Ghost on your VPS: Docker, database, paid subscriptions, reverse proxy and SSL.",6,2000,"2026-04-09T00:00:00+00:00",{"id":16,"name":17,"slug":18,"color":19,"icon":20},[100],{"id":16,"name":17,"slug":18,"color":19,"icon":20},"\u002Fblog\u002Fcovers\u002Fheberger-ghost-poster.svg",{"categorySlug":18,"appSlug":103},"ghost",{"id":105,"slug":106,"title":107,"excerpt":108,"readTime":16,"views":109,"isPinned":13,"publishedAt":110,"category":111,"categories":112,"featuredImage":23,"bgImage":24,"posterImage":114,"relatedSolution":115},73,"heberger-wordpress","Host WordPress on your own VPS","Host WordPress on your VPS for maximum performance and control: Docker, MariaDB, caching, reverse proxy and SSL.",501,"2026-04-08T00:00:00+00:00",{"id":16,"name":17,"slug":18,"color":19,"icon":20},[113],{"id":16,"name":17,"slug":18,"color":19,"icon":20},"\u002Fblog\u002Fcovers\u002Fheberger-wordpress-poster.svg",{"categorySlug":18,"appSlug":116},"wordpress",1785628444274]