shouldiselfhost?they tell you if you can — we tell you if you should
THE DECISION LAYER FOR SELF-HOSTING100 APPS UNDER COVERAGEPROTOCOL v1NO VENDOR HAS EVER PAID FOR A RATING
§
ANALYTICS
Matomo Cloud logo

Should I self-host Matomo Cloud?

$26/mo · Business · 50,000 hits/month · alternative: Matomo
RATING
YES
OUTLOOK
NOT ASSIGNED
RATIONALE

It is literally the same software. Matomo Cloud charges $26/mo to run the GPL code they publish; the apache image plus MariaDB is a one-evening setup and the data lands in your database instead of theirs.

WHAT YOU LOSE
01

Managed upgrades and their support SLA

02

Cloud-side raw data retention policies become your storage problem

WHAT YOU'RE PAYING FOR

web analytics · goals & funnels · visitor logs · GDPR-friendly tracking

Self-Hosting Facts
1 app per panel · Matomo Cloud
Assumes 1 seat on 1 always-on box you already run
Amount per month% of sub *
Subscription$26.00
VPS share1.004%
Storage + backup0.000%
Your hours · 30 min @ $2010.0038%
Self-hosted all-in11.0042%
Effective markup2.4×
Setup · 31 min measured$10.33 once
Break-even0.7 months
VERDICT
YES
OUTLOOK
NOT ASSIGNED

* Percent of the subscription price. Your time is priced at the slider's rate — $0/h ("my homelab time is free and I love it") is a legitimate position. Every number is derived from the record, never hand-written. Price source, checked 2026-08-06.

Runs comfortably on a real VPS (2 GB+).

01
ALTERNATIVES
Ranked alternatives
01Matomo logo
MatomoThe full Google-Analytics-shaped suite on your own hostname, with visitor profiles, funnels and no monthly hit meter.
matomo-org/matomo · ★ 21,756 · 0d
02Plausible CE logo
Plausible CEThe same privacy-first analytics dashboard the vendor sells, on your own domain, with no pageview meter counting against you.
plausible/analytics · ★ 28,463 · 1d
Matomo running from the boot-verified compose file
Matomo, running from the compose file on this page — screenshot from our verified instance, not marketing material.
02
EVIDENCE
PROTOCOL
v1
VERIFIED BY
zernonia
REVIEWED
10 AUG 2026
SETUP MEASURED
31 MIN
AI ASSISTANT
CLAUDE-CODE · STATED
WHAT BROKE
01

Boot to healthy measured at 39s on the 2GB reference env

THE TESTED COMPOSE FILE — CI-BOOTED WEEKLY
# Matomo — the analytics standard; apache image + mariadb
services:
  matomo:
    image: matomo:apache
    container_name: matomo
    restart: unless-stopped
    depends_on:
      matomo-db:
        condition: service_healthy
    environment:
      MATOMO_DATABASE_HOST: matomo-db
      MATOMO_DATABASE_DBNAME: matomo
      MATOMO_DATABASE_USERNAME: matomo
      MATOMO_DATABASE_PASSWORD: matomo
    ports:
      - "8100:80"
    volumes:
      - matomo-data:/var/www/html
    healthcheck:
      test: ["CMD-SHELL", "php -r 'exit(@file_get_contents(\"http://localhost:80/\")!==false?0:1);'"]
      interval: 10s
      timeout: 10s
      retries: 30
      start_period: 30s
  matomo-db:
    image: mariadb:11
    restart: unless-stopped
    environment:
      MARIADB_DATABASE: matomo
      MARIADB_USER: matomo
      MARIADB_PASSWORD: matomo
      MARIADB_ROOT_PASSWORD: matomo-root
    volumes:
      - matomo-db:/var/lib/mysql
    healthcheck:
      test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
      interval: 5s
      timeout: 5s
      retries: 12
volumes:
  matomo-data:
  matomo-db:

Want a guided install instead? caniselfhostit.com/matomo-cloud has AI-agent prompts that assume a bare machine — that's their half of the stool, and it's good.

FULL TIMED LOG
# Matomo Cloud — verdict log

- **Date:** 2026-08-10
- **Verdict:** YES — worth it
- **Protocol:** v1 (2GB reference env, Docker preinstalled, AI assistant: claude-code)

## Setup evidence

- Compose: `compose/matomo-cloud-matomo.yml`
- Boot to healthy: **39s** measured this session
- Setup time recorded: 31 min (boot + configuration to first working workflow)

## What broke / notes

- Boot to healthy measured at 39s on the 2GB reference env

## The call

It is literally the same software. Matomo Cloud charges $26/mo to run the GPL code they publish; the apache image plus MariaDB is a one-evening setup and the data lands in your database instead of theirs.
03
HISTORY
10 AUG 2026UNRATED → YESInitial verdict: It is literally the same software.