Hi! I’m not sure if I’m just dense vs other users, but I manage a self-hosted Ghost deployment (selfh.st) and have been struggling to piece together what I need to know about the new v6.0 release despite all of the documentation floating around (some in the official Ghost docs, some I stumbled across on Notion, etc.).
As a result, I thought it’d be helpful to compile and document what I’ve come up with so far for others in the same boat.
Feel free to correct me if I’m wrong on any of the points below – it’s not meant to be a complete guide, but rather a sort of FAQ for those looking to get grounded.
- Installation: Docker Compose is now the official self-host installation method, although it’s currently only in preview.
- Upgrading: The official Ghost documentation provides guides for upgrading bare metal installations, and Hannah from the Ghost staff has outlined a brief guide on how to upgrade Ghost v5 and earlier Docker installations to the new v6.
- Web Analytics: Ghost now comes with ‘built in’ analytics via an integration with Tinybird (essentially just an open source wrapper for ClickHouse), which has free/paid plans and a self-hosted option for those who want to avoid paying.
- Tinybird seems to be lacking in features (click events, etc.) compared to mature self-hosted alternatives (Plausible, Umami, etc.). I’ll personally be passing for the time being, although the idea of built-in analytics directly from the Ghost dashboard is appealing.
- ActivityPub: Ghost v6.0 now comes with built-in ActivityPub integration, which needs to be enabled when deploying. The installation guide outlines how to enable it via variables and proper reverse proxy declarations (docs only list Caddy, but someone recently merged an NGINX template in the repo).
- By default, Ghost will be configured to use the Ghost team’s hosted AP server, which comes with limits (2,000 max followers/following, 100 interactions/day). Users can self-host their own AP server and point their Ghost instance to it instead to bypass these limits.
- Users can easily deploy Ghost without web analytics or ActivityPub enabled if desired (don’t enable them in the .env file when deploying)
Thanks!